Hoplite Browser Security

Hoplite Browser Security

Chrome Extension that analyses browsing traffic and blocks malicious or managed content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hoplite Browser Security",
  "description": "Chrome Extension that analyses browsing traffic and blocks malicious or managed content",
  "version": "2.1.4.0",
  "icons": {
    "16": "images/favicon.png",
    "48": "images/favicon.png",
    "128": "images/favicon.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "images/favicon.png",
    "default_title": "Hoplite Browser Security"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/blocked.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "nativeMessaging",
    "storage",
    "alarms",
    "tabs",
    "webRequest",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}