Free The Web

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

Τι είναι το Free The Web;

Το Free The Web είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://unmorph.com, και η κύρια λειτουργία του είναι "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Free The Web

Λήψη αρχείων επέκτασης Free The Web σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
Επίσημο URL https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
Περιγραφή Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
Μέγεθος Αρχείου 128 KB
Αριθμός Εγκαταστάσεων 55
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2019-06-18
Ημερομηνία Δημοσίευσης 2019-06-18
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://unmorph.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://unmorph.com/free-the-web
Διεύθυνση URL της Σελίδας Βοήθειας https://unmorph.com/free-the-web
Υποστηριζόμενες Γλώσσες 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"
    }
}