Cookie Cutter by Neeva
Cookie Cutter protects you from third-party trackers and responds to cookie requests and pop-ups so you don't have to.
Τι είναι το Cookie Cutter by Neeva ;
Το Cookie Cutter by Neeva είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://neeva.com, και η κύρια λειτουργία του είναι "Cookie Cutter protects you from third-party trackers and responds to cookie requests and pop-ups so you don't have to.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Cookie Cutter by Neeva
Λήψη αρχείων επέκτασης Cookie Cutter by Neeva σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tired of annoying cookie pop-ups on every website? Wish targeted ads didn’t chase you across the web and onto social media? Neeva Cookie Cutter can help. By acting as your free personal privacy shield on the web, you will see significantly fewer cookie requests as you browse, and you can feel peace of mind that you aren’t being tracked against your wishes. Eliminating annoying cookie requests and pop-ups takes only three clicks: Add the extension to Chrome Set your desired level of tracker blocking protection (Strict vs. Standard) Choose what types of non-essential cookies you’d like to accept or decline on all the websites you visit And that’s it! In no time at all, you will have done away with hours of frustration and be able to browse the web in peace without unnecessary privacy violations or data leakage. Cookie banners were introduced as a way to give people on the internet more privacy and control over how their data was being used. Instead, websites have become practically unusable and designed around manipulating you to give up as much of your privacy as possible. Join our movement to put people first, not big businesses and advertisers. Neeva Cookie Cutter is available internationally, and does not require an account. Add to Chrome for free today. If you are interested in a more private web experience built for you, check out the Neeva Search + Protect Chrome extension. With Neeva’s 100% ad-free and private search plus ad trackers blocked when you browse, you can find what you are looking for, not what advertisers want to sell you. Forbes, Wired, and even The New York Times have written about how Neeva is re-imagining search. TIME even named Neeva to their exclusive “100 Best Inventions of 2021” list. It’s no surprise, since Neeva was created by world class-technologists, including many of the folks who built Google Search and Chrome, with the single-minded purpose of re-inventing search, exclusively for you–the user–rather than advertisers. To learn more about Neeva, visit www.neeva.com Questions/support? Contact us at [email protected] Enjoy the browser extension? Please leave a 5-star rating. Neeva does not track your web browsing and works to prevent third-party trackers from doing so. We never sell or profit off of your information (and we don't allow anyone else to either!). Neeva’s Bill of Rights: https://neeva.com/digital-bill-of-rights Privacy Policy: https://neeva.com/privacy
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | idcnmiefjmnabbchggljinkeiinlolon |
Επίσημο URL | https://chrome.google.com/webstore/detail/cookie-cutter-by-neeva/idcnmiefjmnabbchggljinkeiinlolon |
Περιγραφή | Cookie Cutter protects you from third-party trackers and responds to cookie requests and pop-ups so you don't have to. |
Μέγεθος Αρχείου | 3.44 MB |
Αριθμός Εγκαταστάσεων | 538 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2023-05-22 |
Ημερομηνία Δημοσίευσης | 2022-01-29 |
Αξιολόγηση | 4.44/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | http://neeva.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://neeva.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://neeva.co/privacy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookie Cutter by Neeva ", "short_name": "Cookie Cutter by Neeva ", "description": "Cookie Cutter protects you from third-party trackers and responds to cookie requests and pop-ups so you don't have to.", "version": "2.1.0", "manifest_version": 2, "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_title": "Cookie Cutter by Neeva", "default_popup": "popup.html" }, "icons": { "16": "icons\/tracker-extension-icon.png", "32": "icons\/[email protected]", "48": "icons\/[email protected]", "128": "icons\/tracker-extension-icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "match_about_blank": true, "all_frames": true } ], "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "webRequestBlocking", "webRequest", "*:\/\/*\/*" ], "web_accessible_resources": [ "page.js" ], "options_page": "settings.html" } |