Trocker

Trocker

This extension is an email Tracker Blocker, hence the name: Trocker!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon_128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "trocker.js"
      ],
      "matches": [
        "*://mail.google.com/*",
        "*://inbox.google.com/*",
        "*://*.mail.live.com/*",
        "*://*.outlook.live.com/*",
        "*://*.outlook.office365.com/*",
        "*://*.outlook.office.com/*",
        "*://*.mail.yahoo.com/*"
      ],
      "match_about_blank": true,
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "homepage_url": "https://trockerapp.github.io",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "options_ui": {
    "chrome_style": false,
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "*://*.google.com/*",
    "*://*.live.com/*",
    "*://*.googleusercontent.com/*"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "short_name": "__MSG_extension_name__",
  "version": "2.6.28",
  "web_accessible_resources": [
    "tl.png",
    "td.png",
    "tlc.png",
    "tracked.png",
    "bypasser.html"
  ]
}