webhook

webhook

js反调试工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "webhook",
  "version": "1.0.0",
  "description": "js反调试工具",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "debugger",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "inject.js"
      ],
      "all_frames": true
    }
  ],
  "commands": {
    "attach-debugger": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Attach"
    }
  },
  "manifest_version": 2
}