TrackOFF

TrackOFF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/Red32.png",
    "default_popup": "Index.html"
  },
  "content_scripts": [
    {
      "js": [
        "Scripts/extn_contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "Scripts/lib/to_jquery.min.js",
        "Scripts/extn_welcome.js"
      ],
      "matches": [
        "https://www.trackoff.com/*/welcome-screen"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/Red16.png",
    "24": "images/Red24.png",
    "32": "images/Red32.png",
    "48": "images/Red48.png",
    "64": "images/Red64.png",
    "128": "images/Red128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "tabs",
    "storage",
    "nativeMessaging",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "version": "2.2",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}