去掉php中文网广告图标

去掉广告图标

当前为 2018-10-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         去掉php中文网广告图标
// @namespace
// @version      0.1
// @description  去掉广告图标
// @author       e
// @include      /^http(s?)://www.php.cn/(.*)$/
// @grant        unsafeWindow
// @run-at       document-end
// @namespace https://greasyfork.org/users/221396
// ==/UserScript==
//

(function () {
    'use strict';
    
   setTimeout(function () {
     $(".close_id").hide();
   }, 150);
})();