Cookie Clicker

GDPR Be Gone

What is Cookie Clicker?

Cookie Clicker is a Chrome extension developed by andrewburns, and its main feature is "GDPR Be Gone".

Extension Screenshots

screenshot

Download Cookie Clicker Extension CRX File

Download Cookie Clicker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically clicks annoying "Accept Cookie" prompts                    

Extension Basic Information

Name Cookie Clicker Cookie Clicker
ID fddoklbbncbclomgdaikpjnlejjlppdb
Official URL https://chrome.google.com/webstore/detail/cookie-clicker/fddoklbbncbclomgdaikpjnlejjlppdb
Description GDPR Be Gone
File Size 78.04 KB
Installation Count 219
Current Version 1.0.0
Last Updated 2020-03-29
Publish Date 2020-03-27
Rating 3.00/5 Total 2 Ratings
Developer andrewburns
Email [email protected]
Payment Type free
Extension Website https://aburns.me
Help Page URL https://aburns.me
Privacy Policy Page URL http://aburns.me/sa_privacy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Clicker",
    "description": "GDPR Be Gone",
    "version": "1.0.0",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Cookie Clicker",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "16": "icons\/cookie16.png",
        "48": "icons\/cookie48.png",
        "128": "icons\/cookie128.png"
    }
}