Priiv: Privacy Manager

Priiv: Privacy Manager

A privacy manager that helps users opt-in to better privacy and security settings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "0.1.3",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "author": "Nader",
  "homepage_url": "https://github.com/the-privacy-co/priiv-browser-extension",
  "icons": {
    "16": "public/images/icon16.png",
    "48": "public/images/icon48.png",
    "128": "public/images/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "public/images/icon16.png",
      "19": "public/images/icon19.png",
      "32": "public/images/icon32.png",
      "38": "public/images/icon38.png"
    },
    "default_title": "__MSG_extName__"
  },
  "background": {
    "page": "background/index.html"
  },
  "content_scripts": [
    {
      "js": [
        "browser.js",
        "injected-web.js",
        "injected.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "commands": {
    "_execute_browser_action": {},
    "dashboard": {
      "description": "__MSG_menuDashboard__"
    },
    "settings": {
      "description": "__MSG_labelSettings__"
    },
    "newScript": {
      "description": "__MSG_menuNewScript__"
    }
  },
  "minimum_chrome_version": "55.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}