电影盒子去广告等工具
// ==UserScript==
// @name 电影盒子工具集
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 电影盒子去广告等工具
// @author yankj12
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @match *://m.tv1box.com/*
// @match *://m.tv1box.com/vod-play-id-*
// @grant none
// ==/UserScript==
(function() {
'use strict';
//iframe name='__main_iframe__'
$("iframe[name=__main_iframe__]").remove();
// img id='close2' class='btnclose' 根据这些条件找父级div,删除父级div
var adDiv = $("img#close2").parent();
//console.log(adDiv)
if(adDiv != null){
adDiv.remove();
}
// Your code here...
})();