Rule 34 sort

rule34 button to sort content by score

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Rule 34 sort
// @namespace    http://tampermonkey.net/
// @version      2025-07-13.03
// @description  rule34 button to sort content by score
// @author       peheidoma
// @match        https://rule34.xxx/index.php?page=post*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=rule34.xxx
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(()=>{
    const SORT_KEYWORD = 'sort:score:desc';
    const search = document.querySelector("input[name=tags]").value;
    const tags = [...document.querySelectorAll('.tag-type-general')].map(a => a.children[1].text).join();
    const elem = document.createElement('button');
    elem.innerText = `Sort ${search.indexOf(SORT_KEYWORD) >= 0 ? '(ON)' : '(OFF)'}`
    elem.style="width: 100%; background-color: white; border: 1px solid; margin-top: 3px;"
    elem.onclick = (_) => {
        if(search.indexOf('sort:score:desc') >= 0) {
            document.location = `https://rule34.xxx/index.php?page=post&s=list&tags=${encodeURI(search.replace(SORT_KEYWORD, ''))}`
        } else {
            document.location = `https://rule34.xxx/index.php?page=post&s=list&tags=${encodeURI(search + ' ' + SORT_KEYWORD)}`
        }
    }

    document.getElementsByClassName("tag-search")[0].appendChild(elem);
    })
})();