您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
remove ad from hiphop.gr forum to fix problem on mobile devices
// ==UserScript== // @name hh_ad_remover // @description:en remove ad from hiphop.gr forum to fix problem on mobile devices // @version 1 // @grant none // @include https://www.hiphop.gr/* // @namespace https://greasyfork.org/users/178858 // @description remove ad from hiphop.gr forum to fix problem on mobile devices // ==/UserScript== window.addEventListener ("load", Greasemonkey_main, false); function Greasemonkey_main () { document.getElementsByClassName("adform-adbox")[0].remove(); }