tixCraft Support

tixCraft Support

購票輔助程式

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "tixCraft Support",
  "description": "購票輔助程式",
  "version": "2.0.2",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "購票輔助"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://tixcraft.com/ticket/ticket/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "js/ticket.js"
      ]
    },
    {
      "matches": [
        "https://tixcraft.com/activity/game/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "js/game.js"
      ]
    },
    {
      "matches": [
        "https://tixcraft.com/ticket/area/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "js/area.js"
      ]
    },
    {
      "matches": [
        "https://tixcraft.com/activity/detail/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "js/detail.js"
      ]
    },
    {
      "matches": [
        "https://tixcraft.com/ticket/verify/*"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.min.js",
        "js/verify.js"
      ]
    }
  ],
  "manifest_version": 3
}