Free The Web

Gets rid of cookie and privacy notifications across the web by hiding or accepting them.

What is Free The Web?

Free The Web is a Chrome extension developed by https://unmorph.com, and its main feature is "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Extension Screenshots

screenshot

Download Free The Web Extension CRX File

Download Free The Web 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

                        This extension allows users to hide or auto-accept privacy and cookie notifications while browsing. Both behaviors are configurable by the user.

This extension embraces the need for protecting the privacy of users across the Internet; it is aimed at helping those who are already aware of existing policies to increase their productivity by decluttering their browsing experience.                    

Extension Basic Information

Name Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
Official URL https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Description Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
File Size 128 KB
Installation Count 55
Current Version 1.0.5
Last Updated 2019-06-18
Publish Date 2019-06-18
Rating 5.00/5 Total 1 Ratings
Developer https://unmorph.com
Email [email protected]
Payment Type free
Extension Website https://unmorph.com/free-the-web
Help Page URL https://unmorph.com/free-the-web
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Free The Web",
    "description": "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*.json"
    ],
    "version": "1.0.5",
    "author": "Victor Pascu",
    "browser_action": {
        "default_title": "Free The Web",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persisent": false
    },
    "icons": {
        "128": "\/img\/icon-default-128.png"
    }
}