台湾高铁抢票插件

台湾高铁抢票插件

Auther: WANG Runxin, Support Website: Fudan.university

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "台湾高铁抢票插件",
  "description": "Auther: WANG Runxin, Support Website: Fudan.university",
  "version": "1.4",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "save": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Trigger auto fill"
    },
    "submit": {
      "suggested_key": {
        "default": "Alt+X"
      },
      "description": "Trigger submit"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "background",
    "notifications",
    "http://*/",
    "https://*/",
    "https://fudan.university/api/default/get-api-token",
    "https://fudan.university/api/default/get-user-setting"
  ]
}