tixcraft_bot/webdriver/Maxbotplus_1.0.0/manifest.json

228 lines
6.6 KiB
JSON
Raw Normal View History

2023-12-27 06:17:40 +00:00
{
"author": "Max Yao",
2024-01-06 17:44:06 +00:00
"name": "MaxBot Plus",
"description": "Quick way to get expected tickets on some specific websites.",
2023-12-27 06:17:40 +00:00
"icons": {
"16": "icons/maxbot-16.png",
"32": "icons/maxbot-32.png",
"48": "icons/maxbot-48.png",
"64": "icons/maxbot-64.png",
"128": "icons/maxbot-128.png"
},
2023-12-31 18:40:47 +00:00
"manifest_version": 3,
2023-12-27 06:17:40 +00:00
"background": {
"service_worker": "background.js",
"type": "module"
2023-12-27 06:17:40 +00:00
},
2024-01-01 15:58:30 +00:00
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules_1.json"
}
]
},
2023-12-27 06:17:40 +00:00
"permissions": [
"storage",
2024-01-01 15:58:30 +00:00
"declarativeNetRequest",
"declarativeNetRequestFeedback"
2023-12-27 06:17:40 +00:00
],
"host_permissions": [
"http://127.0.0.1:16888/*"
],
2023-12-27 06:17:40 +00:00
"web_accessible_resources": [
2023-12-31 18:40:47 +00:00
{
"resources": [ "data/*.json" ],
2023-12-31 18:40:47 +00:00
"extension_ids": ["*"],
"matches": [ "*://*/*" ]
}
],
"options_page": "options.html",
"action": {
"default_icon": "icons/maxbot-128.png",
"default_title": "MaxBot"
},
2023-12-27 06:17:40 +00:00
"content_scripts" : [
{
"matches" : [
"https://tixcraft.com/",
"https://www.indievox.com/",
"https://indievox.com/",
"https://ticketmaster.sg/"
],
2023-12-27 06:17:40 +00:00
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_home.js" ]
},
{
"matches" : [
"https://tixcraft.com/activity/detail/*",
"https://www.indievox.com/activity/detail/*",
"https://indievox.com/activity/detail/*",
"https://ticketmaster.sg/activity/detail/*"
],
"run_at": "document_start",
"js" : [ "jquery.min.js", "js/tixcraft_detail.js" ]
2023-12-27 06:17:40 +00:00
},
{
2024-01-08 11:13:11 +00:00
"matches" : [
"https://tixcraft.com/activity/game/*",
"https://www.indievox.com/activity/game/*",
"https://indievox.com/activity/game/*",
"https://ticketmaster.sg/activity/game/*"
2024-01-08 11:13:11 +00:00
],
2023-12-27 06:17:40 +00:00
"run_at": "document_end",
2024-01-06 17:44:06 +00:00
"js" : [ "jquery.min.js", "js/common.js", "js/tixcraft_game.js" ]
2023-12-27 06:17:40 +00:00
},
2024-01-01 15:58:30 +00:00
{
2024-01-08 11:13:11 +00:00
"matches" : [
"https://tixcraft.com/ticket/area/*",
"https://www.indievox.com/ticket/area/*",
"https://indievox.com/ticket/area/*"
2024-01-08 11:13:11 +00:00
],
2024-01-01 15:58:30 +00:00
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/common.js", "js/tixcraft_area.js" ]
2024-01-01 15:58:30 +00:00
},
2023-12-27 06:17:40 +00:00
{
2024-01-08 11:13:11 +00:00
"matches" : [
"https://tixcraft.com/ticket/ticket/*",
"https://www.indievox.com/ticket/ticket/*",
"https://indievox.com/ticket/ticket/*",
"https://ticketmaster.sg/ticket/ticket/*"
2024-01-08 11:13:11 +00:00
],
2023-12-27 06:17:40 +00:00
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_ticket.js" ]
},
{
"matches" : [ "https://ticket.com.tw/application/utk01/utk0101_.aspx" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ticket_home.js" ]
},
2024-01-04 09:46:18 +00:00
{
"matches" : [ "https://ticket.com.tw/application/UTK02/UTK0201_.aspx?PRODUCT_ID=*" ],
"run_at": "document_end",
"world": "MAIN",
"js" : [ "jquery.min.js", "js/ticket_event_home.js" ]
},
{
"matches" : [ "https://ticket.com.tw/application/UTK02/UTK0201_00.aspx?PRODUCT_ID=*" ],
"run_at": "document_end",
"world": "MAIN",
"js" : [ "jquery.min.js", "js/ticket_date.js" ]
},
2023-12-29 09:13:59 +00:00
{
"matches" : [ "https://ticket.com.tw/application/UTK02/UTK0204_.aspx?*" ],
"run_at": "document_end",
2024-01-06 17:44:06 +00:00
"js" : [ "jquery.min.js", "js/common.js", "js/ticket_area.js" ]
2023-12-29 09:13:59 +00:00
},
{
"matches" : [ "https://kham.com.tw/application/utk01/UTK0101_03.aspx" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kham_home.js" ]
},
2023-12-29 09:13:59 +00:00
{
2024-01-04 09:46:18 +00:00
"matches" : [ "https://kham.com.tw/application/UTK02/UTK0201_.aspx?PRODUCT_ID=*" ],
"run_at": "document_end",
"world": "MAIN",
"js" : [ "jquery.min.js", "js/kham_event_home.js" ]
},
{
"matches" : [
"https://kham.com.tw/application/UTK02/UTK0201_00.aspx?PRODUCT_ID=*"
],
2024-01-04 09:46:18 +00:00
"run_at": "document_end",
"world": "MAIN",
"js" : [ "jquery.min.js", "js/kham_date.js" ]
},
{
2023-12-29 09:13:59 +00:00
"matches" : [ "https://kham.com.tw/application/UTK02/UTK0204_.aspx?*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kham_area.js" ]
},
{
"matches" : [ "https://ticket.ibon.com.tw/ActivityInfo/Details/*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ibon_detail.js" ]
},
2023-12-29 09:13:59 +00:00
{
"matches" : [ "https://orders.ibon.com.tw/application/UTK02/UTK0201_000.aspx?*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ibon_area.js" ]
},
{
"matches" : [
"https://orders.ibon.com.tw/application/UTK02/UTK0201_001.aspx?PERFORMANCE_ID=*PERFORMANCE_PRICE_AREA_ID=*",
"https://orders.ibon.com.tw/application/UTK02/UTK0202_.aspx?PERFORMANCE_ID=*PERFORMANCE_PRICE_AREA_ID=*"
],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ibon_ticket.js" ]
},
{
"matches" : [
"https://msg.cityline.com/*.html*"
],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/cityline_msg_background.js"]
},
{
"matches" : [
"https://msg.cityline.com/*"
],
"run_at": "document_end",
"world": "MAIN",
"js" : [ "jquery.min.js", "js/cityline_msg_front.js"]
},
2024-01-01 15:58:30 +00:00
{
2024-01-03 11:36:26 +00:00
"matches" : [
"https://*.cityline.com/utsvInternet/internet/eventDetail?event=*",
"https://*.cityline.com/utsvlnternet/*/login?lang=TW"
],
2024-01-01 15:58:30 +00:00
"run_at": "document_end",
2024-01-03 17:28:12 +00:00
"js" : [ "jquery.min.js", "js/cityline_event_common.js"]
2024-01-01 15:58:30 +00:00
},
2024-01-03 11:36:26 +00:00
{
"matches" : [
"https://ticketplus.com.tw/activity/*"
],
"run_at": "document_end",
2024-01-03 17:28:12 +00:00
"js" : ["jquery.min.js", "js/ticketplus_activity.js"]
},
{
"matches" : [
"https://ticketplus.com.tw/order/*"
],
2024-01-04 09:46:18 +00:00
"run_at": "document_start",
2024-01-03 17:28:12 +00:00
"js" : [ "jquery.min.js", "js/ticketplus_order.js"]
2024-01-03 11:36:26 +00:00
},
{
"matches" : [
"https://kktix.com/"
],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kktix_home.js" ]
},
2024-01-03 11:36:26 +00:00
{
"matches" : [
"https://*.kktix.cc/events/*"
],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kktix_events.js" ]
},
2024-01-06 17:44:06 +00:00
{
"matches" : [
"https://kktix.com/events/*/registrations/new"
],
"world": "MAIN",
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/common.js", "js/kktix_registrations_assign.js" ]
},
2023-12-27 06:17:40 +00:00
{
"matches" : [
"https://kktix.com/events/*/registrations/new"
],
"run_at": "document_start",
2024-01-06 17:44:06 +00:00
"js" : [ "jquery.min.js", "js/common.js", "js/kktix_registrations_reload.js" ]
2023-12-27 06:17:40 +00:00
}
],
2024-01-10 04:41:02 +00:00
"version": "1.0.3"
2023-12-27 06:17:40 +00:00
}