您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
哔嘀影视移除广告
// ==UserScript== // @name [kesai]哔嘀影视移除广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 哔嘀影视移除广告 // @author kesai // @match https://bde4.com/* // @match https://bde4.cc/* // ==/UserScript== (function () { 'use strict'; function addScript(url) { var link = window.document.createElement('script'); link.type = 'text/javascript'; link.src = url + '?t=' + new Date().getTime(); link.async = true; document.getElementsByTagName("HEAD")[0].appendChild(link); } if (typeof jQuery == 'undefined') { addScript("https://code.jquery.com/jquery-3.3.1.min.js"); } $('.isActive').remove(); $('#js5297').next().remove(); $('center').hide(); $('.__zy_circle.__zy_animated.__zy_infinite').remove(); $('div:contains(请关闭广告拦截插件对本站的拦截)').css('display', 'none') setTimeout(function () { $('.isActive').remove(); }, 1000) })();