NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Titulky.com - Script odstraní hlášení o AdBlock s bubákem
// @namespace http://tampermonkey.net/
// @version 2.0
// @description Admin_Vidra schvaluje.
// @author Janak
// @grant none
// @include http://*.titulky.com/*
// @include https://*.titulky.com/*
// @run-at document-end
// @grant unsafeWindow
// @copyright 2017 Janak
// @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt
// ==/UserScript==
(function() {
'use strict';
setTimeout(killthemonster, 200);
})();
function killthemonster() {
if(document.getElementById('btn-close-adbb')) {
window.location.href = 'javascript:$().colorbox.close()';
}
setTimeout(killthemonster, 200);
}