Creep Alert
Check if friends or colleagues track you via email
Creep Alert là gì?
Creep Alert là một tiện ích mở rộng Chrome được phát triển bởi https://replidy.com, và tính năng chính của nó là "Check if friends or colleagues track you via email".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Creep Alert
Tải xuống các tệp mở rộng Creep Alert dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Creep Alert |
ID | pbbkkjaggipediphjidoflnijohkfghk |
URL Chính Thức | https://chromewebstore.google.com/detail/creep-alert/pbbkkjaggipediphjidoflnijohkfghk |
Mô tả | Check if friends or colleagues track you via email |
Kích Thước Tệp | 51.4 KB |
Số Lần Cài Đặt | 256 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2019-07-30 |
Ngày Phát Hành | 2019-07-30 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://replidy.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.replidy.com/creepalert |
URL Trang Chính Sách Bảo Mật | https://www.getmailflow.com/legal/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |