您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除googleAD
// ==UserScript== // @name 去除google广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 去除googleAD // @author Remember // @grant none // @license AGPL License // @include *://m.v.qq.com/x/cover/* // ==/UserScript== (function() { 'use strict'; // google-auto-placed const earr=[...document.getElementsByClassName('google-auto-placed'),...document.getElementsByClassName('adsbygoogle')]; if(earr.length){ earr.forEach(el=>{ el.parentNode.removeChild(el); }) } })();