Privacy Bee: Zero-Trust Secure Browsing

Privacy Bee: Zero-Trust Secure Browsing

Keep yourself hidden as you browse the web with Privacy Bee.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Privacy Bee: Zero-Trust Secure Browsing",
  "description": "Keep yourself hidden as you browse the web with Privacy Bee.",
  "version": "2.0.7",
  "manifest_version": 2,
  "icons": {
    "16": "icons/pbLogo16.png",
    "32": "icons/pbLogo32.png",
    "48": "icons/pbLogo48.png",
    "128": "icons/pbLogo128.png"
  },
  "browser_action": {
    "default_title": "Privacy Bee",
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/pbLogo16.png",
      "32": "icons/pbLogo32.png"
    }
  },
  "background": {
    "scripts": [
      "background/browser-polyfill.js",
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background/browser-polyfill.js"
      ]
    },
    {
      "matches": [
        "http://app.privacybee.test/login*",
        "https://app.privacybee.com/login*"
      ],
      "js": [
        "background/pb-login.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://developer.mozilla.org/*",
    "storage",
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}