您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
try to take over the world!
// ==UserScript== // @version 2.0 // @name 港剧网去广告,和微信客服 // @namespace http://tampermonkey.net/ // @description try to take over the world! // @author 香香的牛粪 // @match http://www.metvb1.com/* // @grant none // @require https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js // ==/UserScript== (function() { 'use strict'; // Your code here... console.log("这是一次测试") //开始移除广告节点 $("#note").remove(); $("div[style = 'display: block; padding: 0px; margin: 0px; z-index: 2147483647; position: fixed; right: 0px; bottom: auto; left: auto; bottom: 0px; width: 320px; height: 270px;']").remove(); $("#txt").remove(); $("div[style = 'float:right;width:300px;height:500px;margin-top:0px;']").remove(); })();