diff --git a/src/assets/js/background.js b/src/assets/js/background.js
new file mode 100644
index 000000000..5f3d19ec2
--- /dev/null
+++ b/src/assets/js/background.js
@@ -0,0 +1,3 @@
+chrome.runtime.onInstalled.addListener(function() {
+ // here we can execute chrome specific APIs
+});
diff --git a/src/index.html b/src/index.html
index 26309705b..33cc90119 100644
--- a/src/index.html
+++ b/src/index.html
@@ -2,7 +2,20 @@
-
+
+
Web Cryptocurrency Wallet | Amon
diff --git a/src/manifest.json b/src/manifest.json
index 0e51c5e65..934b24433 100644
--- a/src/manifest.json
+++ b/src/manifest.json
@@ -1,13 +1,20 @@
{
+ "manifest_version": 3,
"name": "Amon",
+ "version": "3.6.66",
+ "homepage_url": "https://wallet.amon.tech",
+ "description": "Amon is an intelligent crypto debit card connected to a Wallet, offering real-time conversion from cryptocurrencies to fiat currencies.",
"short_name": "Amon",
- "start_url": "index.html",
- "display": "standalone",
- "icons": [{
- "src": "assets/icons/icon-512x512.png",
- "sizes": "512x512",
- "type": "image/png"
- }],
- "background_color": "#000",
- "theme_color": "#000"
+ "icons": {
+ "128": "assets/icons/icon-128x128.png",
+ "512": "assets/icons/icon-512x512.png"
+ },
+ "action": {
+ "default_popup": "index.html",
+ "default_title": "Amon"
+ },
+ "background": {
+ "service_worker": "assets/js/background.js"
+ }
}
+