Cookie Notice Blocker

Remove most of those annoying "We value your privacy" banners & cookie notices from websites.

Τι είναι το Cookie Notice Blocker;

Το Cookie Notice Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ben Cheshire, και η κύρια λειτουργία του είναι "Remove most of those annoying "We value your privacy" banners & cookie notices from websites.".

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

screenshot

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

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

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

                        This extension was built to remove those annoying cookie consent notices, banners and warnings that pop all over the web. It will not give any consent to advertising cookies, nor will it alter cookie behaviour—it just blocks or closes in-page notifications so you don't have to. As such, it's important to note that blocking these notices is not a guarantee that websites won't set any cookies to track you. Furthermore, some websites are particularly forceful in their implementations of cookie consent, so this extension may not work in all cases. It'll work in a lot of them though!!

Cookie Notice Blocker works by injecting scripts into each tab. These scripts use a multitude of techniques to block a wide variety of cookie notices, and each script can be enabled/disabled at your discretion. A core aim of this project was to achieve intelligent blocking without any noticeable impact on computer performance. For example, scripts will only run in the active tab and are throttled if they take a while to execute.

You can disable blocking on individual websites by using the whitelist feature. An open tab's domain can be quickly whitelisted by clicking on the Cookie Notice Blocker button in the Chrome toolbar—the required field in the options page will be filled in automatically. Just one more click and the domain will be whitelisted.

Any changes made to the settings will be instantly reflected in your open tabs. All settings will be synced automatically to your Chrome profile.

Cookie Notice Blocker does not rely on any third-party ad-block database. The filters and algorithms developed for this extension are all a result of my own tests and experiments. Basically, I'm the guy to blame if it doesn't work. On that note: if you have any questions, feature requests or bugs you'd like to report, feel free to leave a comment on the Chrome web store page.                    

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

Όνομα Cookie Notice Blocker Cookie Notice Blocker
ID odhmfmnoejhihkmfebnolljiibpnednn
Επίσημο URL https://chromewebstore.google.com/detail/cookie-notice-blocker/odhmfmnoejhihkmfebnolljiibpnednn
Περιγραφή Remove most of those annoying "We value your privacy" banners & cookie notices from websites.
Μέγεθος Αρχείου 81.57 KB
Αριθμός Εγκαταστάσεων 35,211
Τρέχουσα Έκδοση 1.7.0
Τελευταία Ενημέρωση 2020-05-25
Ημερομηνία Δημοσίευσης 2020-05-25
Αξιολόγηση 3.63/5 Συνολικά 124 Αξιολογήσεις
Προγραμματιστής Ben Cheshire
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Notice Blocker",
    "author": "Ben Cheshire",
    "short_name": "CNB",
    "version": "1.7.0",
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "description": "Remove most of those annoying \"We value your privacy\" banners & cookie notices from websites.",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        ""
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "jsc\/1.js"
        ]
    },
    "options_page": "bFramework\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.svg*"
            ],
            "js": [
                "jsc\/2.js"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "version_name": "1.7.0"
}