search
HomeWeb Front-endJS TutorialRemoveCookieWall, una extension de Firefox

RemoveCookieWall, una extension de Firefox

Are you fed up with the banner that has become fashionable on websites so that you accept third-party cookies or checkout? In this post I explain how I made (and published) a Firefox extension to avoid it on most sites

INFO

The code for this extension is published at https://github.com/jagedn/removecookiewall-addon and you can install it in Firefox (also on mobile) from https://addons.mozilla.org/es/firefox/addon/removecookiewall/

For a few months, and due to a European requirement (I think), most websites show you a banner the first time you access them that do not let you continue until you decide between:

  • I am going to place thousands of third-party cookies in your browser that will spy on what you browse

  • go to the checkout and pay me so I don't do it

Most of these libraries execute javascript as soon as the page is loaded that reads your cookies. If they see that you have not checked out, they show you an HTML dialog and block the body changing the style to "block" (or similar)

This dialog doesn't let you read what's underneath but...​ it's still a DOM element of the HTML, so, since browsers allow you to open a development console and inspect the HTML, I came up with the idea of ​​eliminating manually the dialog (you simply click on inspect, search in the HTML where it is defined and click on delete) and chimpón, the dialog disappears. Then I look for the "body" declaration and by double clicking on the style attribute I remove the property that blocks it and I can now scroll.

Little magic.

What is happening then? Well, the javascript code simply keeps waiting for a user event to arrive telling it which button you have pressed, but these buttons are no longer there, so it will never arrive and it will not install third-party cookies.

Ok, but what if I refresh the page? Well start again...​ so this is perfect for a new browser extension to do it for me.

RemoveCookieWall Extension

A Firefox extension, in short, is a reserved browser memory space where javascript code is executed that can dialogue with it.

It can (if the user grants permissions) inject code into the pages you visit, open tabs, close them, communicate with remote services,...

RemoveCookieWall is a Firefox extension that the "only" thing it needs is for the browser to inject a small javascript code into all the pages that the user visits.

This javascript, as the page has loaded, will inspect if there is a DOM element that matches any of the ones I have investigated that they are using. If it detects it, it will use standard Javascript functions to delete it.

As the banner can sometimes appear (milli)seconds after our code is executed, what the script does is repeat the search for a couple of seconds. After this time, if the banner has not appeared, the extension assumes that the page does not have a CookieeWall and ends

And this is all. All that remains is to package the code, add a Manifest file that indicates the permissions our extension requires and publish it in Firefox

Code

The JS code is basically:

var readyStateCheckInterval;
var counter = 0;

function sanitizeBody() {
    document.body.style.overflow = "unset"
    document.body.classList.remove('sxnlzit')
    document.body.classList.remove('didomi-popup-open')
    document.body.parentNode.classList.remove('sp-message-open')
}

function removeMe(element) {
    element.remove();
    sanitizeBody();
}

readyStateCheckInterval = setInterval(function() {
    if (document.readyState === "complete") {
        counter++;
        const removeParent = ['div.pmConsentWall']; //elpais
        [...removeParent].forEach(s => {
            var divs = document.body.querySelectorAll(s);
            [...divs].forEach(element => {
                removeMe(element.parentNode);
            });
        });
        const removeThis = [
            'div[data-nosnippet="data-nosnippet"]',
            '#mrf-popup',
            '#didomi-popup',
            '[id^="sp_message_container_"]',
            '#cl-consent',
            'dialog.cookie-policy'
        ];
        [...removeThis].forEach(s => {
            var divs = document.body.querySelectorAll(s);
            [...divs].forEach(element => {
                removeMe(element);
            });
        });
        if (counter > 30) {
            clearInterval(readyStateCheckInterval);
        }
    }
}, 100);

As soon as the code is injected into the page, an interval starts every 100 mili

The script looks to see if the document.body.querySelectorAll finds any element like #mrf-popup, #didomi-popup, etc. If it finds it, simply remove it with element.remove()

After a few attempts it ends up deleting the interval

Every extension must have a Manifest file. The one for this extension is simply:

{

    "description": "Remove CookieWall",
    "manifest_version": 2,
    "name": "RemoveCookieWall",
    "version": "0.11",
    "homepage_url": "https://github.com/jagedn/removecookiewall-addon",
    "icons": {
        "48": "icons/border-48.png"
    },
    "content_scripts": [{
        "matches": [
            "*://*/*"
        ],
        "js": ["removeCookieWall.js"]
    }],
    "browser_specific_settings": {
        "gecko": {
            "id": "remove-cookiewall@aguilera.soy"
        }
    }
}

As you see, content_scripts indicates that we want to inject the js into all pages. Other extensions can indicate only a site, others execute a javascript in the background, …

Build and publish

To publish in Firefox we simply have to provide a zip containing all the files required by the extension. To make it easy I have made a build.sh that simply runs the zip:

zip -r -FS ../remove-cookiewall.zip * --exclude '.git' --exclude 'build.sh'

Publishing an extension in Firefox has no complications and is free. The only thing that your extension has to pass an initial review that may take one (or several) days

The above is the detailed content of RemoveCookieWall, una extension de Firefox. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!