果核剥壳关闭去广告提示条

果核剥壳去广告

// ==UserScript==
// @name         果核剥壳关闭去广告提示条
// @name:zh      果核剥壳关闭去广告提示条
// @name:zh-CN   果核剥壳关闭去广告提示条
// @name:zh-TW   果核剥壳关闭去广告提示条
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  果核剥壳去广告
// @description:zh      果核剥壳去广告
// @description:zh-CN   果核剥壳去广告
// @description:zh-TW   果核剥壳去广告
// @author       You
// @match        https://*.ghxi.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    for(let i=0; i<10000; i++)
    {
        window.clearInterval(i);
    }
    $('.item-no-thumb').remove();
    $('.action').remove();
    $('.footer').remove();
    $('.dengl').remove();
})();