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”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载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.                    

扩展基本信息

名称 Creep Alert 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\/*"
    ]
}