ao3 hide certain tags

suppress tags that aren't capitalized

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);