遊戲橘子擴充元件

遊戲橘子擴充元件

Receive a message from a native application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "check.js"
      ],
      "matches": [
        "*://bfweb.hk.beanfun.com/*",
        "*://hk.beanfun.com/*"
      ]
    }
  ],
  "description": "Receive a message from a native application.",
  "icons": {
    "128": "beanfun!.png"
  },
  "manifest_version": 3,
  "name": "遊戲橘子擴充元件",
  "permissions": [
    "nativeMessaging",
    "scripting",
    "alarms"
  ],
  "version": "0.5.0",
  "content_security_policy": {},
  "host_permissions": [
    "*://bfweb.hk.beanfun.com/*",
    "*://hk.beanfun.com/*"
  ]
}