Rule 34 sort

rule34 button to sort content by score

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
    })
})();