-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest_template.json
50 lines (50 loc) · 1015 Bytes
/
manifest_template.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
{
"manifest_version": 3,
"name": "Rabet",
"version": "1.7.4",
"description": "Rabet extension, a simple way to interact with Stellar network.",
"homepage_url": "https://rabet.io",
"icons": {
"16": "logo/16x16.png",
"32": "logo/32x32.png",
"48": "logo/48x48.png",
"128": "logo/128x128.png"
},
"action": {
"default_title": "Rabet",
"default_icon": "logo/128x128.png",
"default_popup": "dist/popup.html"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist/content_script.js"
],
"match_about_blank": true,
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"dist/*.*"
],
"matches": [
"<all_urls>",
"*://*/*"
]
}
],
"background": {
"service_worker": "dist/background_script.js",
"old_service_worker": "@@background_script@@",
"type": "module"
}
}