Sleazy Fork is available in English.

Better Danbooru Artist Search

Improve URL handling within the Danbooru artist search engine and automatically navigate to the wiki page if indubitable.

Versione datata 27/12/2016. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name         Better Danbooru Artist Search
// @version      2.2.2
// @description  Improve URL handling within the Danbooru artist search engine and automatically navigate to the wiki page if indubitable.
// @author       ForgottenUmbrella
// @match        https://danbooru.donmai.us/artists*
// @namespace    https://greasyfork.org/users/83187
// ==/UserScript==

(function() {
    'use strict';
    var query = document.getElementById("search_name").value;
    var old_query = query;

    var domains = [/.com(\/|$)/, /.net(\/|$)/, /.jp(\/|$)/];
    if (domains.some(function(elem){ return ~query.search(elem); }) ||
      (query.match(/\./g).length > 1
      && query.split(".").every(function(elem){ return elem > 1; })
      && query.substr(query.length) !== ".")) {
        switch (true) {
            case !query.startsWith("http://"):
                query = "http://" + query;
            /*falls through*/
            case query.includes("pixiv"):
                switch (true) {
                case query.includes("/whitecube/user/"):
                    query = query.replace("/whitecube/user/", "/member.php?id=");
                /*falls through*/
                case query.includes("/illust/"):
                    query = query.replace(/\/illust\/.*/, "");
                /*falls through*/
                case query.includes("#_=_"):
                    query = query.replace("A#_=_", "");
                }
            break;
            case query.includes("twitter"):
                switch (true) {
                case query.includes("/mobile."):
                    query = query.replace("/mobile.", "");
                /*falls through*/
                case query.includes("?p=s"):
                    query = query.replace("?p=s", "");
                /*falls through*/
                case query.includes("/status/"):
                    query = query.replace(/\/status\/.*/, "");
                }
            break;
            case query.includes("tumblr"):
                switch (true) {
                case !query.endsWith("com"):
                    query = query.substr(0, query.search("com") + "com".length);
                }
            break;
        }
        if (query !== old_query) {
            document.getElementById("search_name").value = query;
            document.getElementsByName("commit")[0].click();
        }
    }

    var artists_list = document.getElementsByTagName("tbody")[1];
    if (artists_list.childElementCount === 1) {
        //Redundant variables because it would otherwise be too unwieldy.
        var first_artist = artists_list.firstElementChild;
        var artist_table_data = first_artist.getElementsByTagName("td")[0];
        var url = artist_table_data.getElementsByTagName("a")[0].href;
        document.location = url;
    }
})();