ao3 hide certain tags

suppress tags that aren't capitalized

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         ao3 hide certain tags
// @namespace    https://greasyfork.org/en/users/36620
// @version      0.3.1
// @description  suppress tags that aren't capitalized
// @author       scriptfairy
// @include      http://archiveofourown.org/*works*
// @include      https://archiveofourown.org/*works*
// @grant        none
// ==/UserScript==
//
function isCap(str) {
    if (/[\W\d]/.test(str[0])) {return true;}
    else if (str[0] !== str[0].toLowerCase()) {return true;}
    else {return false;}
}
//
(function($) {
    $('<style>').text('.hide {float:right;}').appendTo($('head'));
    //
    var lis = $('.index .tags li.freeforms');
    for (i=0;i<lis.length;i++) {
        var li = lis[i];
        var tagtext = li.innerText;
        if (tagtext.indexOf(" ") == -1 && !isCap(tagtext)) {
            li.style.display = 'none';
        }
        else if (tagtext.indexOf(" ") > -1 && (!isCap(tagtext) || !isCap(tagtext.slice(tagtext.indexOf(" ")+1)))) {
            li.style.display = 'none';
        }
    }
    for (j=0;j<$('.index .blurb').length;j++) {
        var work = $('.index .blurb')[j];
        var worktags = $(work).children('.tags')[0];
        if ($('[style$="display: none;"]', worktags).length > 0) {
            var button = document.createElement('div');
            button.setAttribute('class','hide');
            button.innerHTML = '<button type="button" class="showtag">Show More Tags</button>';
            $(worktags).after(button);
        }
    }
    //
    $(document).ready(function(){
        $('.showtag').click(function() {
            var blurb = $(this).parent().prev()[0];
            console.log(blurb);
            $('[style$="display: none;"]', blurb).removeAttr('style');
            $(this).parent('div').remove();
        });
    });
})(window.jQuery);