Sleazy Fork is available in English.

Rule34 Classic search box

Restore the classic textbox on rule34.paheal.net

ของเมื่อวันที่ 24-09-2016 ดู เวอร์ชันล่าสุด

// ==UserScript==
// @name         Rule34 Classic search box
// @namespace    http://rule34.paheal.net/
// @namespace    https://rule34.paheal.net/
// @version      0.1
// @description  Restore the classic textbox on rule34.paheal.net
// @match        http://rule34.paheal.net/
// @match        https://rule34.paheal.net/
// @author       jtvjan
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var elements = document.getElementsByClassName("tagit");
    while(elements.length > 0){
        elements[0].parentNode.removeChild(elements[0]);
    }
     document.getElementsByName("search")[0].className = "";
})();