巴哈自動簽到

巴哈自動簽到

Daily sign in 94 EZ.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "巴哈自動簽到",
  "version": "1.3.0",
  "description": "Daily sign in 94 EZ.",
  "icons": {
    "128": "image/babi.png"
  },
  "permissions": [
    "alarms",
    "background",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": "image/babi.png",
    "default_popup": "options.html",
    "default_title": "巴哈自動簽到設定"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.gamer.com.tw/*"
      ],
      "js": [
        "js/content.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://user.gamer.com.tw/login.php"
      ],
      "js": [
        "js/login.js"
      ],
      "all_frames": true
    }
  ]
}