Interface and basic functionality.

Just learning how to make a basic extension. Creating an interface and setting up some basic plumbing.
This commit is contained in:
Ryan Breen
2023-01-11 22:54:50 -05:00
parent 12ccc005c9
commit 210e61c35b
7 changed files with 61 additions and 13 deletions

View File

@@ -20,7 +20,7 @@
"content_scripts": [{
"js": [ "content.js" ],
"matches": [ "*://example.com/*" ]
"matches": [ "<all_urls>" ]
}],
"action": {
@@ -35,5 +35,12 @@
}
},
"permissions": [ ]
"permissions": [ "storage" ],
"web_accessible_resources": [
{
"resources": ["nostr.js"],
"matches": ["<all_urls>"]
}
]
}