Creep Alert
Check if friends or colleagues track you via email
Creep Alert क्या है?
Creep Alert https://replidy.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check if friends or colleagues track you via email"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Creep Alert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Creep Alert |
ID | pbbkkjaggipediphjidoflnijohkfghk |
आधिकारिक URL | https://chromewebstore.google.com/detail/creep-alert/pbbkkjaggipediphjidoflnijohkfghk |
विवरण | Check if friends or colleagues track you via email |
फ़ाइल का आकार | 51.4 KB |
स्थापना संख्या | 256 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2019-07-30 |
प्रकाशन तिथि | 2019-07-30 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://replidy.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.replidy.com/creepalert |
गोपनीयता नीति पृष्ठ URL | https://www.getmailflow.com/legal/privacy |
समर्थित भाषाएँ | 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\/*" ] } |