Defendera Browser Protection

Defendera Browser Protection

Premium security, without compromises. The browser extensions offering enterprise-grade protection, for fraction of the price. Its…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Defendera Browser Protection",
  "version": "1.2.2",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "panel.html"
  },
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "cookies",
    "tabs",
    "storage",
    "history"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*"
      ]
    },
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "*://dashboard.defendera.app/*"
    ]
  }
}