Apple Debug

Apple Debug

这个插件是一个用于公司内部使用的插件,主要功能是拉起本地程序

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Apple Debug",
  "version": "1.13",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*",
        "*://aircode.bytedance.net/*",
        "*://aircode-boe.bytedance.net/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://localhost/*",
        "*://aircode.bytedance.net/*",
        "*://aircode-boe.bytedance.net/*"
      ],
      "resources": [
        "api.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "nativeMessaging",
    "tabs"
  ],
  "host_permissions": [
    "*://aircode.bytedance.net/*",
    "*://aircode-boe.bytedance.net/*",
    "*://localhost/*"
  ]
}