-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
95 lines (93 loc) · 2.45 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
95
{
"manifest_version" : 2,
"applications" : {
"gecko" : {
"id" : "[email protected]",
"strict_min_version" : "111.0",
"strict_max_version" : "135.*"
}
},
"author": "Axel Grude",
"name" : "QuickFolders",
"description" : "__MSG_extensionDescription__",
"version" : "6.9.2",
"default_locale": "en",
"developer" : {
"name" : "Axel Grude",
"url" : "https://quickfolders.org/index.html"
},
"background": {
"page": "qf-background.html"
},
"permissions": [
"accountsRead",
"accountsFolders",
"compose",
"clipboardRead",
"clipboardWrite",
"menus",
"messagesRead",
"notifications",
"tabs",
"sessions"
],
"browser_action": {
"default_icon": {
"19": "chrome/content/skin/ico/QuickFolders_32.svg"
},
"default_title": "QuickFolders",
"default_windows": [ "normal", "messageDisplay" ],
"type": "button"
},
"commands": {
"toggle-foldertree": {
"suggested_key": {
"default": "F10"
},
"description": "Toggle Folder tree visibility"
}
},
"experiment_apis": {
"WindowListener": {
"schema": "chrome/content/api/WindowListener/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["WindowListener"]],
"script": "chrome/content/api/WindowListener/implementation.js"
}
},
"LegacyPrefs": {
"schema": "chrome/content/api/LegacyPrefs/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["LegacyPrefs"]],
"script": "chrome/content/api/LegacyPrefs/implementation.js"
}
},
"NotifyTools": {
"schema": "chrome/content/api/NotifyTools/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["NotifyTools"]],
"script": "chrome/content/api/NotifyTools/implementation.js",
"events": ["startup"]
}
},
"Utilities": {
"schema": "chrome/content/api/Utilities/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["Utilities"]],
"script": "chrome/content/api/Utilities/implementation.js"
}
}
},
"icons" : {
"32" : "chrome/content/skin/ico/QuickFolders_32.svg",
"64" : "chrome/content/skin/ico/QuickFolders_32.svg"
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
}
}