-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
94 lines (94 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.2.11",
"homepage_url": "https://github.com/ZEBAS204/moz-safari-toolbar",
"incognito": "spanning",
"description": "__MSG_extensionDescription__",
"icons": {
"24": "icons/savescreenshot.svg",
"48": "icons/savescreenshot.svg",
"96": "icons/savescreenshot.svg"
},
"background": {
"scripts": [
"_globals.js",
"utils/colors.js",
"utils/storage.js",
"lib/worker_wasm.js",
"imagecomments.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icons/savescreenshot.svg",
"browser_style": true,
"default_popup": "popup/choose_format.html",
"theme_icons": [
{
"dark": "icons/savescreenshot.svg",
"light": "icons/savescreenshot-light.svg",
"size": 19
}
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"js": [
"utils/storage.js",
"contentscript.js"
]
}
],
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
"web_accessible_resources": [
"lib/lib_bg.wasm"
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"commands": {
"full-png": {
"description": "__MSG_region_full_label__ (PNG)"
},
"full-jpg": {
"description": "__MSG_region_full_label__ (JPEG)"
},
"full-copy": {
"description": "__MSG_region_full_label__ (__MSG_format_copy_label__)"
},
"viewport-png": {
"description": "__MSG_region_viewport_label__ (PNG)"
},
"viewport-jpg": {
"description": "__MSG_region_viewport_label__ (JPEG)"
},
"viewport-copy": {
"description": "__MSG_region_viewport_label__ (__MSG_format_copy_label__)"
},
"selection-png": {
"description": "__MSG_region_selection_label__ (PNG)"
},
"selection-jpg": {
"description": "__MSG_region_selection_label__ (JPEG)"
},
"selection-copy": {
"description": "__MSG_region_selection_label__ (__MSG_format_copy_label__)"
}
},
"permissions": [
"<all_urls>",
"contextMenus",
"notifications",
"storage",
"tabs",
"theme",
"scripting"
],
"default_locale": "en"
}