Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/assets/js/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
chrome.runtime.onInstalled.addListener(function() {
// here we can execute chrome specific APIs
});
15 changes: 14 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@
<html lang="en">

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# website: http://ogp.me/ns/website#">

<!--for chrome ext-->
<style type="text/css">
body {
overflow: hidden;
min-width: 320px;
max-width: auto;
}
html {
overflow: hidden;
min-width: 320px;
max-width: auto;
min-height: 568px;
}
</style>
<meta charset="utf-8"/>
<title>Web Cryptocurrency Wallet | Amon</title>
<meta name="description" content="Welcome to Amon Wallet"/>
Expand Down
25 changes: 16 additions & 9 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
}