What.cd add Wiki and Collage search boxes

Add Wiki and Collage search boxes to What.cd

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        What.cd add Wiki and Collage search boxes
// @description Add Wiki and Collage search boxes to What.cd
// @namespace   funeral_meat
// @include     http*://*what.cd/*
// @version     1
// @grant       none
// ==/UserScript==

searchbars = document.querySelectorAll("#searchbars ul");

//Wiki
$(searchbars) //uncomments existing code
	.contents()
	.filter(function(){return this.nodeType === 8;}) //get the comments
	.replaceWith(function(){return this.data;})

	
//Collages
forumsHTML = searchbars[0].children[3].innerHTML; // copy html code from forums box and substitute text
collagesHTML = forumsHTML.replace(/forums/g, "collages").replace(/Forums/g, "Collages");

searchbars[0].innerHTML += collagesHTML;

//add sorting args
orderingHTML = '<input name="order_by" value="Name" type="hidden"><input name="order_way" value="Ascending" type="hidden">';
document.getElementById("collagessearch").previousElementSibling.outerHTML += orderingHTML;