Creep Alert
Check if friends or colleagues track you via email
Was ist Creep Alert?
Creep Alert ist eine Chrome-Erweiterung, die von https://replidy.com entwickelt wurde, und ihr Hauptmerkmal ist "Check if friends or colleagues track you via email".
Erweiterungsscreenshots
Creep Alert-Erweiterungs-CRX-Datei herunterladen
Laden Sie Creep Alert-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
Creep Alert is the Chrome extension for Gmail that gives you an alert when someone tries to track you via email. It also blocks read-receipts and hidden tracking pixels. HOW IT WORKS: When a tracker is detected, it blocks it and shows an alert icon next to the sender's name. By clicking the alert icon, you will also be able to send a prewritten and polite response to the sender, informing them that you are not ok with being tracked.
Grundlegende Informationen zur Erweiterung
Name | Creep Alert |
ID | pbbkkjaggipediphjidoflnijohkfghk |
Offizielle URL | https://chromewebstore.google.com/detail/creep-alert/pbbkkjaggipediphjidoflnijohkfghk |
Beschreibung | Check if friends or colleagues track you via email |
Dateigröße | 51.4 KB |
Installationsanzahl | 256 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2019-07-30 |
Veröffentlichungsdatum | 2019-07-30 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://replidy.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.replidy.com/creepalert |
URL der Datenschutzrichtlinien-Seite | https://www.getmailflow.com/legal/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.0.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "background": { "persistent": true, "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/logo-19.png", "38": "images\/logo-38.png", "48": "images\/logo-48.png" }, "default_title": "__MSG_browserActionTitle__" }, "minimum_chrome_version": "10.0", "options_ui": { "chrome_style": false, "open_in_tab": true, "page": "pages\/options.html" }, "web_accessible_resources": [ "scripts\/*.js", "images\/*", "pages\/options.html", "pages\/updated.html" ], "content_scripts": [ { "all_frames": false, "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/inbox.google.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end" } ], "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/*.google.com\/*", "*:\/\/*.googleusercontent.com\/*" ] } |