This commit is contained in:
iw0 2024-05-01 16:29:21 +02:00
parent a8bc3284e4
commit 168b72bdea
2 changed files with 17 additions and 2 deletions

View File

@ -1,15 +1,24 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BC100 Autofill :: Changelog</title> <title>BC100 Autofill :: Changelog</title>
</head> </head>
<body> <body>
<h1>BC100 Autofill has been updated</h1> <h1>BC100 Autofill has been updated</h1>
<h2>New feature since v0.2.1:</h2> <h2>New feature since v0.2.1:</h2>
<ul> <ul>
<li>You can now choose which disruption to enter by default</li> <li>You can now choose which disruption to enter by default:
<ul>
<li>I was delayed by more than 60 minutes</li>
<li>I didn't travel at all due to the delay</li>
<li>I went back home due to the delay</li>
</ul>
</li>
</ul> </ul>
</body> </body>
</html> </html>

View File

@ -2,7 +2,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "BC100 Autofill", "name": "BC100 Autofill",
"description": "Autofills your BahnCard 100 number and birthday into the passenger rights claim form.", "description": "Autofills your BahnCard 100 number and birthday into the passenger rights claim form.",
"version": "0.2.1", "version": "0.3.0",
"icons": { "icons": {
"48": "icons/icon.png", "48": "icons/icon.png",
"96": "icons/icon@2x.png" "96": "icons/icon@2x.png"
@ -42,5 +42,11 @@
"gecko_android": { "gecko_android": {
"strict_min_version": "113.0" "strict_min_version": "113.0"
} }
},
"background": {
"scripts": [
"bg.js"
],
"persistent": false
} }
} }