比特大熊广告移除

try to take over the world!

// ==UserScript==
// @name         比特大熊广告移除
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       lampon
// @match        http://www.btdx8.com/*
// @grant        none
// @require    http://code.jquery.com/jquery-1.11.0.min.js  
// ==/UserScript==

(function() {
    setCookie('AD_btdx','"idx:1"',2);
    setCookie('AD_720','"idx:2"',365);
})();
function setCookie(cname, cvalue, exdays) {
    var d = new Date();
    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    var expires = "expires="+d.toUTCString();
    document.cookie = cname + "=" + cvalue + "; " + expires+";path=/";
}