草榴防去广告检测

去除了10秒的广告插件警告

// ==UserScript==
// @name         草榴防去广告检测
// @namespace    hayden
// @version      0.0.9
// @description  去除了10秒的广告插件警告
// @author       hayden

// @match      http*://*/htm_data/*.html
// @match      http*://*/htm_mob/*.html
// @match      http*://*/read.php*
// @match      http*://*/personal.php*
// @match      http*://*/post.php*
// @match      http*://*/thread0806.php*

// @run-at       document-body
// @grant        none
// @license      MIT License
// ==/UserScript==

(function() {
    'use strict';
    const defaultReply = "1024 感謝分享";
    
     $('<div>').addClass('tpc_content').insertBefore("body").html("TEST").css(
         {
             'position': 'absolute',
             'top': '-9950px',
             'left': '-9990px'
         }
     );

})();