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-04-10 23:33:17 +02:00
|
|
|
"version": "0.2.0",
|
2023-10-13 20:48:11 +02:00
|
|
|
"icons": {
|
|
|
|
"64": "icons/icon.png"
|
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
2023-10-17 19:04:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|