CookieBlock

Automatically enforces cookie consent preferences to protect your privacy.

Τι είναι το CookieBlock;

Το CookieBlock είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CookieBlock Developers, και η κύρια λειτουργία του είναι "Automatically enforces cookie consent preferences to protect your privacy.".

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

screenshot
screenshot

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

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

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

                        CookieBlock is a browser extension that allows you to automatically remove cookies that do not respect your privacy. Through the use of advanced machine-learning technology, it categorizes cookies into four distinct purposes. These are "Necessary", "Functionality", "Analytics" and "Advertising", which the user then has the power to permit or reject individually. 

Unlike nagging cookie banners that interrupt your browsing experience, CookieBlock only requires that you define your policy once, and furthermore guarantees that the types of cookies you reject are actually removed from your browser. Moreover, CookieBlock works on any website you visit, and does not rely on the honesty of the website host.

As a result, CookieBlock perfectly complements extensions that seek to remove annoying cookie banners from your browsing experience, allowing you to preserve your privacy at the same time.

This add-on has been built by members of the Information Security Group of the Computer Science Department at ETH Zürich, and was developed as part of the master thesis "Analyzing Cookies Compliance with the GDPR". 

It is also featured at the 31st USENIX Security Symposium: https://www.usenix.org/conference/usenixsecurity22/presentation/bollinger

* Homepage: https://karelkubicek.github.io/post/cookieblock

* Source Code: https://github.com/dibollinger/CookieBlock                    

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

Όνομα CookieBlock CookieBlock
ID fbhiolckidkciamgcobkokpelckgnnol
Επίσημο URL https://chromewebstore.google.com/detail/cookieblock/fbhiolckidkciamgcobkokpelckgnnol
Περιγραφή Automatically enforces cookie consent preferences to protect your privacy.
Μέγεθος Αρχείου 3.85 MB
Αριθμός Εγκαταστάσεων 7,757
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-08-05
Ημερομηνία Δημοσίευσης 2021-05-02
Αξιολόγηση 3.85/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής CookieBlock Developers
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://karelkubicek.github.io/post/cookieblock
Υποστηριζόμενες Γλώσσες de,en,es,cs,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "author": "CookieBlock Team",
    "homepage_url": "https:\/\/karelkubicek.github.io\/post\/cookieblock",
    "version": "1.1.0",
    "incognito": "spanning",
    "default_locale": "en",
    "description": "__MSG_manifestDescription__",
    "icons": {
        "16": "\/icons\/cookieblock-16.png",
        "32": "\/icons\/cookieblock-32.png",
        "48": "\/icons\/cookieblock-48.png",
        "64": "\/icons\/cookieblock-64.png",
        "96": "\/icons\/cookieblock-96.png",
        "128": "\/icons\/cookieblock-128.png"
    },
    "permissions": [
        "",
        "cookies",
        "storage",
        "unlimitedStorage",
        "activeTab"
    ],
    "background": {
        "page": "\/background\/cookieblock_background.html"
    },
    "options_ui": {
        "browser_style": true,
        "page": "\/options\/cookieblock_options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "\/icons\/cookieblock-16.png",
            "32": "\/icons\/cookieblock-32.png",
            "48": "\/icons\/cookieblock-48.png",
            "64": "\/icons\/cookieblock-64.png",
            "96": "\/icons\/cookieblock-96.png",
            "128": "\/icons\/cookieblock-128.png"
        },
        "default_title": "CookieBlock",
        "default_popup": "\/popup\/cookieblock_popup.html"
    }
}