// ==UserScript== // @name 天天电影网去除弹窗广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author 香香的牛粪 // @match http://www.27k.cc/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... var dd = document.getElementsByClassName("bd"); dd[0].remove(); })();