Track Me Not

See who's tracking your emails and block them from doing so.

什麼是Track Me Not?

Track Me Not是由https://amanjain.com開發的Chrome擴展程式,該擴展的主要功能是“See who's tracking your emails and block them from doing so.”。

擴展截圖

screenshot
screenshot

下載Track Me Not擴展crx文件

下載Track Me Not擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        "Track Me Not" detects the invisible tracker hiding inside an email and silently passing your email activity to the sender. It also blocks the trackers and notifies you about it.

PLEASE NOTE:
It works for the following web mails:
  · http://www.gmail.com/
 
It blocks the trackers from following services:
  · http://bananatag.com/
  · http://contactmonkey.com/
  · https://dyn.com/
  · http://www.mailchimp.com/
  · http://mandrillapp.com/
  · http://www.getsidekick.com/
  · http://www.streak.com/
  · http://www.yesware.com/

It also block trackers in emails from:
  · Amazon (.com & .in)
  · Dropbox
  · Facebook
  · Flipkart
  · Linkedin
  · NewRelic
  · Quora
  · Trello
  · Uber

Questions? Ask me here: http://twitter.com/amanjain                    

擴展基本資訊

名稱 Track Me Not Track Me Not
ID aplepkehejihebabfhghmdelnbppchnp
官方網址 https://chromewebstore.google.com/detail/track-me-not/aplepkehejihebabfhghmdelnbppchnp
簡介 See who's tracking your emails and block them from doing so.
檔案大小 8.53 KB
安裝次數 2,636
目前版本 0.3.2
更新時間 2015-03-25
上架時間 2015-03-24
評分 4.19/5 共 16 次評分
開發者 https://amanjain.com
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Track Me Not",
    "version": "0.3.2",
    "description": "See who's tracking your emails and block them from doing so.",
    "icons": {
        "128": "assets\/logo-128x128.png"
    },
    "author": "Aman Kumar Jain",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}