Removes the 'disable Adblock' nag screen.
当前为
// ==UserScript==
// @name SC2Casts.com Adblock Nag Screen Remover
// @namespace http://lazy.artifact
// @version 0.26
// @description Removes the 'disable Adblock' nag screen.
// @author Lazy Artifact
// @match http://sc2casts.com/*
// @grant none
// ==/UserScript==
(function() {
//hi santah!! :-)
var popupFuncNameRegex = /pop[_-]*[ua]p/i,
char,
i,
noop = function() {};
//remove nag screen
for(i in window) {
if(!window.hasOwnProperty(i)) {
continue;
}
if(!popupFuncNameRegex.test(i)) {
continue;
}
window[i] = noop;
}
})();