adblock helper

block adblock blocker

Verze ze dne 13. 08. 2024. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         adblock helper
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  block adblock blocker
// @description:pt-BR block adblock blocker
// @description:ar block adblock blocker
// @description:bg block adblock blocker
// @description:cs block adblock blocker
// @description:da block adblock blocker
// @description:de block adblock blocker
// @description:el block adblock blocker
// @description:eo block adblock blocker
// @description:es block adblock blocker
// @description:fi block adblock blocker
// @description:fr block adblock blocker
// @description:fr-CA block adblock blocker
// @description:he block adblock blocker
// @description:hu block adblock blocker
// @description:id block adblock blocker
// @description:it block adblock blocker
// @description:ja block adblock blocker
// @description:ko block adblock blocker
// @description:nb block adblock blocker
// @description:nl block adblock blocker
// @description:pl block adblock blocker
// @description:ro block adblock blocker
// @description:ru block adblock blocker
// @description:sk block adblock blocker
// @description:sr block adblock blocker
// @description:sv block adblock blocker
// @description:th block adblock blocker
// @description:tr block adblock blocker
// @description:uk block adblock blocker
// @description:ug block adblock blocker
// @description:vi block adblock blocker
// @description:zh-CN block adblock blocker
// @description:zh-TW block adblock blocker
// @author       fienestar
// @match        *://*/*
// @icon         none
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    function update(){
        const style = document.body.style;
        if(style.overflow === 'hidden')
            style.overflow = '';
    }

    new MutationObserver(update).observe(document.body, { attributes: true });
    update();

    const style = document.createElement('style');
    style.innerHTML = `div.fc-ab-root[class="fc-ab-root"]{
    display: none !important;
}`
    document.head.append(style);
})();