Anti-AdBlocker Fuckoff

Protects from Anti-AdBlockers & DeBlocker

当前为 2021-09-02 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name            Anti-AdBlocker Fuckoff
// @namespace       Anti-AdBlocker-Fuckoff
// @version         1.5
// @description     Protects from Anti-AdBlockers & DeBlocker
// @author          Elwyn
// @license         MIT
// @homepage        https://github.com/WakeupNeo33/Anti-AdBlocker-Fuckoff-userscript
// @supportURL      https://greasyfork.org/es/scripts/397070-anti-adblocker-off/feedback
// @iconURL         https://github.com/WakeupNeo33/Anti-AdBlocker-Fuckoff-userscript/raw/main/icon.png
// @include         *
// @noframes
// @run-at          document-start
// @grant           unsafeWindow
// ==/UserScript==
(function() {

	var enable_debug = false;

    // Skip iframes
    if ( window.location !== window.parent.location ) return;

    // Exclude domains
    var excluded_domains = [
	'360.cn',
	'adblockplus.org',
	'agar.io',
	'aliexpress.com',
	'amazon.',
	'apple.com',
	'ask.com',
	'baidu.com',
	'bing.com',
	'bufferapp.com',
	'calm.com',
	'chatango.com',
	'chromeactions.com',
	'dolldivine.com',
	'duckduckgo.com',
	'easyinplay.net',
	'ebay.com',
	'exacttarget.com',
	'facebook.com',
	'flattr.com',
	'flickr.com',
	'fsf.org',
	'greasyfork.org',
	'ghacks.net',
	'google.',
	'github.com',
	'gitlab.com',
	'imdb.com',
	'imgbox.com',
	'imgur.com',
	'instagram.com',
	'jsbin.com',
	'jsfiddle.net',
	'linkedin.com',
	'live.com',
	'mail.ru',
	'minds.com',
	'microsoft.com',
	'msn.com',
	'odysee.com',
	'openuserjs.org',
	'pandoon.info',
	'paypal.com',
	'pinterest.com',
	'plnkr.co',
	'popmech.ru',
	'preloaders.net',
	'qq.com',
	'reddit.com',
	'stackoverflow.com',
	'tampermonkey.net',
	'twitter.com',
	'vimeo.com',
	'wikipedia.org',
	'w3schools.com',
	'xemvtv.net',
	'yahoo.',
	'yandex.ru',
	'youtu.be',
	'youtube.com',
	'vod.pl'
	];
    if ( new RegExp( excluded_domains.join('|').replace(/\./g,'\.') ).test( location.host ) ) return;

    // AdBlock Pattern to Search
    var adblock_pattern = /ad-block|adblock|ad block|bloqueur|bloqueador|Werbeblocker|آدبلوك بلس|блокировщиком/i;
    var disable_pattern = /kapat|disabl|désactiv|desactiv|desativ|deaktiv|detect|enabled|turned off|turn off|απενεργοποίηση|запрещать|állítsd le|publicités|рекламе|verhindert|advert|kapatınız/i;

    var is_core_protected = false;

    // HELPER Functions
    //-----------------
    function debug( value ) {
        if ( !enable_debug ) return;
        if ( typeof value == 'string' ) {
            console.log( "ANTI-ADBLOCKER: " + value );
        } else {
            console.log( "ANTI-ADBLOCKER: -> ");
            console.log( value );
        }
    }

    function addStyle(str) {
        var node = document.createElement('style');
        node.innerHTML = str;
        document.body.appendChild(node);
    }

    function randomInt( min, max )
    {
        // min and max included
        if ( max === undefined ) {
            max = min;
            min = 0;
        }
        return Math.floor(min + Math.random() * (max - min + 1));
    }

    function getRandomName( size )
    {
        var chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        var i;
        var name = '';
        for (i = 0; i < (size||randomInt(10,20)); i++)
        {
            name += chars.charAt( randomInt(0,chars.length) );
        }
        return name;
    }

    function includeElement( el ) {
        var name = getRandomName();
        if ( el.className.length == 0 ) {
            el.className = name;
        } else {
            el.className += ' ' + name;
        }
        return '.' + name + ',';
    }

    /* Thanks to RuiGuilherme  */
    const enableContextMenu = () => {
        window.addEventListener('contextmenu', (event) => {
            event.stopPropagation();
            event.stopImmediatePropagation();
        }, true);
    }

    function protectCore() {
        if ( is_core_protected ) return;
        is_core_protected = true;
        // Protect RemoveChild
        // Blocks the possibility of being able to remove the BODY or the HEAD
        let $_removeChild = unsafeWindow.Node.prototype.removeChild;
        unsafeWindow.Node.prototype.removeChild = function( node ) {
            if ( node.tagName == 'HEAD' || node.tagName == 'BODY' ) return;
            if ( node.parentNode.tagName == 'HEAD' || node.parentNode.tagName == 'BODY' ) return;
            $_removeChild.apply( this, arguments );
        };
        let $_innerHTML = unsafeWindow.Node.prototype.innerHTML;
        unsafeWindow.Node.prototype.innerHTML = function( node ) {
            if ( node.tagName == 'HEAD' || node.tagName == 'BODY' ) return;
            $_innerHTML.apply( this, arguments );
        };

        // Protect innerHTML
        let $_innerHTML_set = Object.getOwnPropertyDescriptor(Element.prototype, 'innerHTML').set;

        Object.defineProperty(Element.prototype, 'innerHTML', {
            set: function (value) {
                if ( this.tagName == 'HEAD' || this.tagName == 'BODY' ) return;
                //Call the original setter
                return $_innerHTML_set.call(this, value);
            }
        });
    }

    // Main Functions
    function removeBlackout( el )
    {
        var classes = '';
        document.querySelectorAll( 'a,b,center,div,h1,h2,h3,h4,h5,h6,i,font,s,span,strong,p,q,u' ).forEach( ( el ) => {
            let style = window.getComputedStyle( el );
            let height, width;
            if ( style.getPropertyValue( 'position' ) == 'fixed' )
            {
                height = style.getPropertyValue( 'height' );
                width = style.getPropertyValue( 'width' );
                if ( ( height == '100%' && width == '100%' ) || ( parseInt( height ) > window.innerHeight - 100 && parseInt( width ) > window.innerWidth - 100 ) )
                {
                    classes += includeElement( el );
                }
            }
        });

        if ( classes.length > 0 ) {

            classes = classes.substring( 0, classes.length - 1 );

            debug( 'Blackout classes:' + classes );

            // Hide Anti-AdBlocker Blackout Elements
            addStyle( classes + '{ display: none !important; }' );

            // Remove Blur FX of Elements
            addStyle( '* { -webkit-filter: blur(0px) !important; filter: blur(0px) !important; }' );

            // enable context menu again
            enableContextMenu();
        }
    }

    function removeModal( el )
    {
        debug( 'AntiAdBlocker Found!');

        var classes = '';

        // Holder of the Modal message
        for (;;) {
            classes += includeElement( el );
            if ( el.parentNode.tagName == 'BODY' || el.parentNode.tagName == 'HEAD' ) break;
            el = el.parentNode;
        }

        if ( classes.length > 0 ) {

            classes = classes.substring( 0, classes.length - 1 );

            debug( 'Modal classes:' + classes );

            // Hide Anti-AdBlocker Modal Elements
            addStyle( classes + '{ display: none !important; }' );

            // Blackout Elements
            removeBlackout();

            // Blocks the possibility of being able to remove the BODY or the HEAD
            protectCore();
        }

    }



    document.addEventListener('DOMContentLoaded', function() {

        // Mutation Observer
        var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;

        // Create an observer instance
        var observer = new MutationObserver( (mutations) => {
            mutations.forEach( (mutation) => {
                if ( mutation.addedNodes.length ) {
                    Array.prototype.forEach.call( mutation.addedNodes, (addedNode) => {
                        // skip nodes with undefined text
                        if ( typeof addedNode.innerText == 'undefined' ) return;
                        // skip nodes without text
                        if ( addedNode.innerText.length < 1 ) return;
                        // search texts that ask to deactivate the AdBlock
                        // debug( addedNode.innerText );
                        if ( adblock_pattern.test( addedNode.innerText ) && disable_pattern.test( addedNode.innerText ) )
                        {
                            removeModal( addedNode );
                        }
                    });
                }
            });
        });
        // Observer
        observer.observe(document, {
            childList : true,
            subtree : true
        });

        protectCore();

    },false);


})();