tixcraft_bot/webdriver/Maxbot_1.0.0/manifest.json

82 lines
2.2 KiB
JSON
Raw Normal View History

2023-12-27 06:17:40 +00:00
{
"author": "Max Yao",
"name": "MaxBot",
2023-12-31 18:40:47 +00:00
"description": "MaxBot Extension",
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": {
2023-12-31 18:40:47 +00:00
"service_worker": "background.js"
2023-12-27 06:17:40 +00:00
},
"minimum_chrome_version": "77.0",
"permissions": [
2023-12-31 18:40:47 +00:00
"activeTab",
2023-12-27 06:17:40 +00:00
"storage",
2023-12-31 18:40:47 +00:00
"scripting",
2023-12-27 06:17:40 +00:00
"tabs",
"webNavigation",
2023-12-31 18:40:47 +00:00
"webRequest"
2023-12-27 06:17:40 +00:00
],
"web_accessible_resources": [
2023-12-31 18:40:47 +00:00
{
"resources": [ "data/settings.json" ],
"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/ticket/area/*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_area.js" ]
},
{
"matches" : [ "https://tixcraft.com/activity/game/*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_game.js" ]
},
{
"matches" : [ "https://tixcraft.com/ticket/ticket/*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_ticket.js" ]
},
{
"matches" : [ "https://tixcraft.com/" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/tixcraft_home.js" ]
},
2023-12-29 09:13:59 +00:00
{
"matches" : [ "https://ticket.com.tw/application/UTK02/UTK0204_.aspx?*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ticket_area.js" ]
},
{
"matches" : [ "https://kham.com.tw/application/UTK02/UTK0204_.aspx?*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kham_area.js" ]
},
{
"matches" : [ "https://orders.ibon.com.tw/application/UTK02/UTK0201_000.aspx?*" ],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/ibon_area.js" ]
},
2023-12-27 06:17:40 +00:00
{
"matches" : [
"https://kktix.com/events/*/registrations/new"
],
"run_at": "document_end",
"js" : [ "jquery.min.js", "js/kktix_registrations_new.js" ]
}
],
"version": "1.0.0"
}