Browser Extension Safety Check

Browser Extension Safety Check

Check if the extension is safe to use

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browser Extension Safety Check",
  "description": "Check if the extension is safe to use",
  "version": "0.0.6",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_icon": "icon/128.png",
    "default_title": "Get Extension Safety Check Report"
  },
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "*://clients2.google.com/service/update2/crx*",
    "*://clients2.googleusercontent.com/crx/download/*",
    "*://edge.microsoft.com/extensionwebstorebase/*",
    "*://*.microsoft.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  }
}