-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (42 loc) · 1.07 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "1.5",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://www.github.com/ushnisha/jigsaw/",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
},
"icons": {
"128": "icons/jigsaw-128.png",
"64": "icons/jigsaw-64.png",
"32": "icons/jigsaw-32.png"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"contextMenus"
],
"web_accessible_resources": [
{
"resources": [
"css/jigsaw.css",
"icons/*.png"
],
"matches": ["<all_urls>"]
}
],
"options_ui": {
"page": "options/jigsaw_options.html",
"open_in_tab": false
},
"background": {
"scripts": ["background/jigsaw_bg_common_functions.js",
"background/jigsaw_bg_context_menu.js"]
},
"default_locale": "en"
}