TrafficLight

TrafficLight

Bitdefender TrafficLight adds a strong and non-intrusive layer of security to your browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "img/Ico_Bar_Green.png"
    },
    "default_popup": "pages/popup/popup.html"
  },
  "background": {
    "service_worker": "app.js"
  },
  "content_scripts": [
    {
      "js": [
        "vendor/react.production.min.js",
        "vendor/react-dom.production.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ]
    }
  ],
  "default_locale": "en_US",
  "description": "__MSG_extName__",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/context_menu_icon.png",
    "128": "img/extension_logo.png"
  },
  "manifest_version": 3,
  "name": "TrafficLight",
  "options_page": "pages/settings/settings.html",
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "scripting",
    "webRequest",
    "nativeMessaging"
  ],
  "version": "3.2.5",
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "resources": [
        "img/*.png",
        "img/*.gif",
        "img/*.svg",
        "pages/blocked/blocked.html"
      ]
    }
  ]
}