Creep Alert
Check if friends or colleagues track you via email
什麼是Creep Alert?
Creep Alert是由https://replidy.com開發的Chrome擴展程式,該擴展的主要功能是“Check if friends or colleagues track you via email”。
擴展截圖
下載Creep Alert擴展crx文件
下載Creep Alert擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | pbbkkjaggipediphjidoflnijohkfghk |
| 官方網址 | 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\/*"
]
} | |