bc100-autofill/manifest.json

35 lines
760 B
JSON
Raw 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.",
2023-10-14 20:15:25 +02:00
"version": "0.0.3",
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"
]
}
],
"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": {
"strict_min_version": "79.0"
2023-10-13 20:48:11 +02:00
}
}
}