bc100-autofill/manifest.json

52 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2023-10-13 20:48:11 +02:00
{
"manifest_version": 2,
"name": "BC100 Autofill",
"description": "Autofills your BahnCard 100 number and birthday into the passenger rights claim form.",
2024-06-04 21:45:03 +02:00
"version": "0.3.6",
2023-10-13 20:48:11 +02:00
"icons": {
2024-04-11 11:26:23 +02:00
"48": "icons/icon.png",
"96": "icons/icon@2x.png"
2023-10-13 20:48:11 +02:00
},
"content_scripts": [
{
"matches": [
2023-10-14 16:28:19 +02:00
"https://www.bahn.de/buchung/fahrgastrechte?einstiegtyp=BC100",
"https://www.bahn.de/buchung/fahrgastrechte?lang=*&einstiegtyp=BC100",
"https://int.bahn.de/*/buchung/fahrgastrechte?einstiegtyp=BC100"
2023-10-13 20:48:11 +02:00
],
"js": [
"content_script.js"
]
},
{
"matches": [
"https://www.bahn.de/buchung/kundenkonto/bahncard",
"https://int.bahn.de/*/buchung/kundenkonto/bahncard",
"https://www.bahn.de/buchung/kundenkonto/bahncard?lang=*"
],
"js": [
"acquire_bcnum.js"
]
2023-10-13 20:48:11 +02:00
}
],
"permissions": [
"storage"
],
"options_ui": {
"page": "options/index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "bc100-autofill@iw0.name"
2023-10-14 20:13:56 +02:00
},
"gecko_android": {
2023-10-14 21:13:16 +02:00
"strict_min_version": "113.0"
2023-10-13 20:48:11 +02:00
}
2024-05-01 16:29:21 +02:00
},
"background": {
"scripts": [
"bg.js"
],
"persistent": false
2023-10-13 20:48:11 +02:00
}
}