Browser Security Plus

Browser Security Plus

Manage Google Chrome using Browser Security Plus extension

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Browser Security Plus",
  "description": "Manage Google Chrome using Browser Security Plus extension",
  "version": "2.17",
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "homepage_url": "https://www.manageengine.com/browser-security/",
  "icons": {
    "16": "bmp16.png",
    "48": "bmp48.png",
    "128": "bmp128.png"
  },
  "action": {
    "default_icon": "bmp128.png",
    "default_title": "Browser Security"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "management",
    "webRequest",
    "nativeMessaging",
    "privacy",
    "contentSettings",
    "alarms",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}