Privacy Bee: Zero-Trust Secure Browsing

Privacy Bee: Zero-Trust Secure Browsing

The Privacy Bee Firefox Extension allows you to sign into your Privacy Bee account, and update your privacy settings as you browse the internet.

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.1.3",
  "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"
      ]
    }
  ],
  "permissions": [
    "*://developer.mozilla.org/*",
    "storage",
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "identity",
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{222b2d79-ffd2-4510-8b40-220cd5a77f5f}"
    }
  }
}