您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
可乐影视去除右下角广告和弹窗和视频下方广告
// ==UserScript== // @name 可乐影视去广告 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 可乐影视去除右下角广告和弹窗和视频下方广告 // @author ziuch // @match https://klyingshi.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=klyingshi.com // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @license MIT // @grant GM_log // ==/UserScript== (function() { 'use strict'; // Your code here... $('#note').remove(); $('.module-adslist').remove(); let interval_ad = setInterval(close_ad, 25); //$('#HMRichBox').remove(); function close_ad() { let ad = document.getElementById("HMRichBox"); if(ad !== null) { ad.style.display = "none"; clearInterval(interval_ad); } }; })();