您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除v2ex广告
当前为
// ==UserScript== // @name V2ex去广告 // @description 去除v2ex广告 // @copyright 2018, lhr(https://www.lhrsite.com/) // @version 1.0.0 // @author lhr // @license MIT // @homepageURL https://github.com/zzlhr/tampermonkey-script/blob/master/v2ex/ // @grant none // @run-at document-end // @include https://*.v2ex.com/* // @namespace https://gf.qytechs.cn/users/194548 // ==/UserScript== (function() { 'use strict'; console.log('插件已加载'); var sidebar_units = $('.sidebar_units'); for(var i=0;i<sidebar_units.length;i++){ $(sidebar_units[i]).attr('hidden',''); } var googles = $('.adsbygoogle'); console.log(googles) for(i=0;i<googles.length;i++){ $(googles[i]).parent().parent().attr('hidden','') } // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址