-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
55 lines (55 loc) · 1.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
{
"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": [
"*://nostrize.me/*",
"*://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/*",
"*://lightsats.com/*",
"*://*.twimg.com/*"
],
"web_accessible_resources": [
{
"resources": ["nostrize-nip07-provider.js"],
"matches": [
"https://*/*",
"http://localhost:*/*",
"http://127.0.0.1:*/*",
"http://*.localhost/*"
]
},
{
"resources": ["nostrize-settings.html"],
"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"
}
}