HackerBar

HackerBar

安全工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HackerBar",
  "version": "1.0.0",
  "description": "安全工具",
  "icons": {
    "16": "./img/icon.png",
    "48": "./img/icon.png",
    "128": "./img/icon.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "HackerBar",
    "default_icon": "./img/icon.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "js": [
        "./umi.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ]
}