GM
This commit is contained in:
34
manifest.json
Normal file
34
manifest.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Nostr Links",
|
||||
"version": "1.0.0",
|
||||
"description": "A web extension to discover Nostr links",
|
||||
"author": "Râu Cao",
|
||||
"homepage_url": "https://gitea.kosmos.org/raucao/nostr-links",
|
||||
"icons": {
|
||||
"48": "icons/nostr-48.png",
|
||||
"96": "icons/nostr-96.png"
|
||||
},
|
||||
"permissions": [
|
||||
"storage",
|
||||
"tabs",
|
||||
"activeTab"
|
||||
],
|
||||
"background": {
|
||||
"scripts": [
|
||||
"background.js"
|
||||
]
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
|
||||
"js": ["content.js"],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
"page_action": {
|
||||
"default_icon": "icons/nostr.svg",
|
||||
"default_title": "Nostr",
|
||||
"default_popup": "popup/nostr-links.html"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user