Powerful Anti AdBlock Script for Blogger || Adblock Detection Script

Mitun
0

🚀 Powerful Anti AdBlock Script for Blogger

Javascript to identify whether ad-blocking behavior is present when a page is being delivered.

Operation

The following web browsers have been tested to identify the behaviors linked to ad blocking using the JavaScript (adblockDetector.js):

Google Chrome

  • Mozilla Firefox
  • Internet Explorer (8+)
  • Safari

The script does this by creating a set of DIVs that are likely to be hidden by browser-based ad blocking tools.

Additional tactics that are not yet included in this script:

URL bait. Allow the detection of network-based ad blocking.
Dynamic bait modification. Update DIV and URL attributes based on the existing blocking lists (Easylist and so on) to make detection more robust.

Download Script

powerful-anti-adblock-script-for

🔥 Why You Need an Anti AdBlock Script

If you're monetizing your blog with ads, you might be losing a significant portion of revenue due to visitors using AdBlock extensions. This script helps you detect AdBlock users and display a message urging them to disable it before accessing your content.

✨ Benefits of Using This Script:

✅ Detects AdBlock users instantly
✅ Displays a custom warning message
✅ Prevents users from viewing content until AdBlock is disabled
✅ Lightweight and easy to integrate into Blogger
✅ Fully customizable design to match your site's style


🎁Click Here for an Exclusive Surprise! 🎁

📌 How to Add the Anti AdBlock Script to Blogger

Step 1: Open Your Blogger Theme Editor

  1. Log in to Blogger Dashboard.

  2. Navigate to Theme > Edit HTML.

Step 2: Insert the Anti AdBlock Script HTML 1

Paste the following script before the closing </head> tag in your Blogger template:

<script> document.addEventListener("DOMContentLoaded", function() { let adBlockEnabled = false; let testAd = document.createElement("div"); testAd.innerHTML = "&nbsp;"; testAd.className = "adsbox"; document.body.appendChild(testAd); window.setTimeout(function() { if (testAd.offsetHeight === 0) { adBlockEnabled = true; } testAd.remove(); if (adBlockEnabled) { let adblockMessage = document.createElement("div"); adblockMessage.style.position = "fixed"; adblockMessage.style.top = "0"; adblockMessage.style.left = "0"; adblockMessage.style.width = "100%"; adblockMessage.style.height = "100vh"; adblockMessage.style.background = "rgba(0, 0, 0, 0.9)"; adblockMessage.style.color = "white"; adblockMessage.style.display = "flex"; adblockMessage.style.alignItems = "center"; adblockMessage.style.justifyContent = "center"; adblockMessage.style.zIndex = "9999"; adblockMessage.style.textAlign = "center"; adblockMessage.style.fontSize = "20px"; adblockMessage.style.padding = "20px"; adblockMessage.innerHTML = `<div><h2>🚫 AdBlock Detected!</h2> <p>We rely on ads to keep our content free and accessible. Please disable your AdBlock and refresh the page to continue.</p> <button onclick='location.reload()' style='background-color: #ff5722; color: white; border: none; padding: 10px 20px; font-size: 18px; cursor: pointer; border-radius: 5px;'>🔄 Refresh Page</button> </div>`; document.body.appendChild(adblockMessage); } }, 100); }); </script>


Powerful Anti AdBlock Script for Blogger HTML CODE 2


<script>
  (function () {
    function detectAdBlock() {
        return new Promise((resolve) => {
            let bait = document.createElement("div");
            bait.className = "adsbox ad-banner ad-unit"; // Common blocked ad-related class names
            bait.style.width = "1px";
            bait.style.height = "1px";
            bait.style.position = "absolute";
            bait.style.left = "-9999px";
            bait.style.visibility = "hidden"; // Make it harder to detect by AdBlock itself
            document.body.appendChild(bait);

            setTimeout(() => {
                let isBlocked = !bait || bait.offsetParent === null || window.getComputedStyle(bait).display === "none";
                document.body.removeChild(bait);
                resolve(isBlocked);
            }, 100); // Reduced timeout for better performance
        });
    }

    function showAdblockPopup() {
        let overlay = document.createElement("div");
        overlay.id = "adblock-overlay";
        overlay.style.position = "fixed";
        overlay.style.top = "0";
        overlay.style.left = "0";
        overlay.style.width = "100%";
        overlay.style.height = "100%";
        overlay.style.backgroundColor = "rgba(0, 0, 0, 0.8)";
        overlay.style.display = "flex";
        overlay.style.justifyContent = "center";
        overlay.style.alignItems = "center";
        overlay.style.zIndex = "9999";
        overlay.innerHTML = `
            <div style="display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; text-align: center; max-width: 500px; border-radius: 10px; margin: 20px; min-height: 250px; font-size: 1.2em; font-family: system-ui; border: 5px solid #b3b3b3; background: #ffffff; color: black;">
                <h2 style="margin: 0px 0px 15px; font-weight: 700;">AdBlocker Detected!</h2>
                <p>We rely on ads to keep our website free. Please disable your ad blocker or whitelist our site.</p>
                <button id="refresh-page" style="padding: 10px 20px; font-size: 16px; cursor: pointer; background: #1a73e8; color: white; border-radius: 10px; margin: 15px 0px 0px;">I Disabled AdBlock</button>
            </div>
        `;
        document.body.appendChild(overlay);

        document.getElementById("refresh-page").addEventListener("click", function () {
            location.reload();
        });
    }

    window.addEventListener("load", () => {
        detectAdBlock().then((adBlockDetected) => {
            if (adBlockDetected) {
                showAdblockPopup();
            }
        });
    });
})();
</script>


Step 3: Save and Test

  1. Click Save Theme after inserting the script.

  2. Open your blog in a new browser window.

  3. Enable AdBlock and refresh the page to check if the warning appears.


🎨 Customization Options

Want to personalize the script? Here’s what you can modify:

  • Change the warning message to match your blog's tone.

  • 🎨 Modify the background color, font size, and text style for a better visual appeal.

  • 🔘 Replace the full-screen overlay with a smaller pop-up if you prefer a subtle approach.

  • 🔄 Add a countdown timer to delay content access instead of blocking it completely.


🚀 Boost Your Blog Revenue Today!

By using this script, you ensure that visitors either support your blog by allowing ads or acknowledge the effort you put into creating valuable content. Give it a try and enjoy a boost in your ad revenue!

📩 Need help with implementation? Drop your questions in the comments! 😊

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Ok, Go it!) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Ok, Go it!