-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
61 lines (61 loc) · 1.24 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
56
57
58
59
60
61
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"name": "Github Aid - displays repo file sizes",
"short_name": "Github Aid",
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"./js/content_script_extension_adapter.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*.js"
],
"matches": [
"*://github.com/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"16": "./icon/eldercat_16.png",
"32": "./icon/eldercat_32.png",
"48": "./icon/eldercat_48.png",
"64": "./icon/eldercat_64.png",
"128": "./icon/eldercat_128.png",
"256": "./icon/eldercat_256.png"
},
"options_ui": {
"page": "./html/option.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"action": {
"default_icon": {
"16": "./icon/eldercat_16.png",
"32": "./icon/eldercat_32.png",
"48": "./icon/eldercat_48.png",
"64": "./icon/eldercat_64.png",
"128": "./icon/eldercat_128.png",
"256": "./icon/eldercat_256.png"
},
"default_popup": "./html/option.html",
"default_title": "Github Aid"
}
}