Quick Heal Anti Tracker

Quick Heal Anti Tracker

Quick Heal Anti Tracker protects user identity and prevents trackers that collect online browsing behavior.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.8",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_desc__",
  "short_name": "__MSG_short_name__",
  "author": "Quick Heal Technologies Ltd",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "./assets/QH_logo.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_app_name__"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "./assets/QH_logo16.png",
    "32": "./assets/QH_logo.png",
    "48": "./assets/QH_logo48.png",
    "128": "./assets/QH_logo128.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "storage",
    "nativeMessaging"
  ],
  "web_accessible_resources": [
    "_locales/*.*/messages.json"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{45e8d41e-2a13-4cb6-bd29-f1dafd9c5b9b}"
    }
  }
}