港剧网去广告,和微信客服

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();
})();