the correct thing to do at this point is to factor out "show a yes/no popup window to user" the complexity in "open a window and then execute some code in the context of that window" is mind-boggling nothing works
15 lines
796 B
JSON
15 lines
796 B
JSON
{"manifest_version" : 3,
|
|
"name" : "Jack Russell",
|
|
"version" : "0.1.0",
|
|
"description" : "Browser wallet extension for Aeternity",
|
|
"icons" : {"48" : "art/jrx-icon-48.png",
|
|
"96" : "art/jrx-icon-96.png"},
|
|
"content_scripts" : [{"matches" : ["*://*/*"],
|
|
"js" : ["dist/content.js"]}],
|
|
"action" : {"default_icon" : "art/jrx-icon-32.png",
|
|
"default_title" : "Jæck Russell",
|
|
"default_popup" : "pages/popup.html"},
|
|
"background" : {"page" : "pages/background.html"},
|
|
"permissions" : ["storage", "scripting"],
|
|
"host_permissions" : ["*://*/*"]}
|