jrx basics
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
{"manifest_version" : 2,
|
||||
"name" : "Jack Russell",
|
||||
"version" : "0.1.0",
|
||||
"description" : "Browser wallet extension for Aeternity",
|
||||
"icons" : {"48" : "icons/jrx-icon-48.png",
|
||||
"96" : "icons/jrx-icon-96.png"},
|
||||
"content_scripts" : [{"matches" : ["*://*/*"],
|
||||
"js" : ["content.js"]}],
|
||||
"browser_action" : {"default_icon" : "icons/jrx-icon-32.png",
|
||||
"default_title" : "Jaeck Russell",
|
||||
"default_popup" : "popup.html"}}
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<button id="mk-detectable">Make Wallet Detectable</button>
|
||||
<br>
|
||||
|
||||
<script type="module" src="popup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
document.getElementById('mk-detectable').onclick = function() {
|
||||
alert('poop')
|
||||
}
|
||||
Reference in New Issue
Block a user