Free The Web

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

Qu'est-ce que Free The Web ?

Free The Web est une extension Chrome développée par https://unmorph.com, et sa fonction principale est "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Free The Web

Téléchargez les fichiers d'extension Free The Web au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
URL Officiel 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.
Taille du Fichier 128 KB
Nombre d'Installations 55
Version Actuelle 1.0.5
Dernière Mise à Jour 2019-06-18
Date de Publication 2019-06-18
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://unmorph.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://unmorph.com/free-the-web
URL de la Page d'Aide https://unmorph.com/free-the-web
Langues Prises en Charge 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"
    }
}