您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Special thanks to Reid! A script to block cancelled products or services in the Client Area of Bandwagon Host.
// ==UserScript== // @name Block Cancelled Products or Services in the Client Area of Bandwagon Host // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description Special thanks to Reid! A script to block cancelled products or services in the Client Area of Bandwagon Host. // @author zcnx // @match https://bandwagonhost.com/clientarea.php?action=products // @match https://bandwagonhost.com/clientarea.php?action=products* // @match https://bwh1.net/clientarea.php?action=products // @match https://bwh1.net/clientarea.php?action=products* // @match https://bwh8.net/clientarea.php?action=products // @match https://bwh8.net/clientarea.php?action=products* // @match https://bwh88.net/clientarea.php?action=products // @match https://bwh88.net/clientarea.php?action=products* // @grant none // ==/UserScript== (function() { 'use strict'; var b = document.getElementsByTagName("strike"); var blok = new Array(); for (var i=0; i<b.length; i++) { b[i].parentNode.parentNode.parentNode.style.display="none"; }; })()