Restore the classic textbox on rule34.paheal.net
As of
// ==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 = "";
})();