Free The Web

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

Was ist Free The Web?

Free The Web ist eine Chrome-Erweiterung, die von https://unmorph.com entwickelt wurde, und ihr Hauptmerkmal ist "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Erweiterungsscreenshots

screenshot

Free The Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Free The Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
Offizielle URL https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Beschreibung Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
Dateigröße 128 KB
Installationsanzahl 55
Aktuelle Version 1.0.5
Letztes Update 2019-06-18
Veröffentlichungsdatum 2019-06-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://unmorph.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://unmorph.com/free-the-web
Hilfeseite URL https://unmorph.com/free-the-web
Unterstützte Sprachen 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"
    }
}