Booru Show hidden CARDS

Automatic display of hidden CARDS,remove AD

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name		Booru Show hidden CARDS
// @description:en	Automatic display of hidden CARDS,remove AD
// @description:zh-CN	自动显示被隐藏的卡片,隐藏掉广告
// @version     0.0.1
// @include     http*://*.booru.org/index.php*
// @name:en     Booru Show hidden CARDS
// @name:zh-CN  Booru隐藏卡片显示
// @namespace https://greasyfork.org/users/405441
// @description Automatic display of hidden CARDS,remove AD
// ==/UserScript==

 showHideIgnored('0','pi'); return false;
   var ad1 =  document.querySelector("#post-list > div.content > div > center");if(ad1!=null)ad1.style.display="none";
   var ad2 =  document.querySelector("#post-list > div.content > div > div.divTable");if(ad2!=null)ad2.style.display="none";
   var ad3 = document.querySelector("body > center > div:nth-child(1)");if(ad3!=null)ad3.style.display="none";
   var ad4 = document.querySelector("body > center > div:nth-child(2)");if(ad4!=null)ad4.style.display="none";
   var ad5 =  document.querySelector("body > center > div:nth-child(3)");if(ad5!=null)ad5.style.display="none";