-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 854 Bytes
/
manifest.json
File metadata and controls
40 lines (40 loc) · 854 Bytes
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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"description": "__MSG_extDescription__",
"version": "2.0.1",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "SaveImageAsType@d7om.dev",
"strict_min_version": "110.0"
}
},
"icons": {
"16": "assets/icons/icon-16.svg",
"48": "assets/icons/icon-48.svg",
"128": "assets/icons/icon-128.svg"
},
"background": {
"scripts": [
"src/background.js"
]
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
},
"permissions": [
"downloads",
"contextMenus",
"activeTab",
"scripting",
"storage",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"homepage_url": "https://github.com/d7omdev/Save-Image-as-Type"
}