forked from nostrize/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1020 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"manifest_version": 3,
"name": "Nostrize Browser Extension",
"version": "1.0",
"description": "Make any website nostr enabled",
"background": {
"service_worker": "nostrize-background.js"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"*://github.com/*",
"*://www.github.com/*",
"*://m.youtube.com/*",
"*://youtube.com/*",
"*://www.youtube.com/*",
"*://x.com/*",
"*://www.x.com/*",
"*://twitter.com/*",
"*://www.twitter.com/*",
"*://web.telegram.org/*"
],
"web_accessible_resources": [
{
"resources": ["nostrize-nip07-provider.js"],
"matches": ["https://*/*", "http://localhost:*/*", "http://127.0.0.1:*/*", "http://*.localhost/*"]
}
],
"options_page": "nostrize-settings.html",
"action": {
"default_title": "Nostrize settings",
"default_popup": "nostrize-settings.html"
},
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
}
}