-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
59 lines (59 loc) · 1.91 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
{
"manifest_version": 2,
"name": "CLHS",
"version": "0.1",
"description": "Bundles a full and unmodified copy of the Common Lisp HyperSpec for fast local browsing, even when offline. This extension is not affiliated with LispWorks.",
"homepage_url": "https://browser-extensions.hexstreamsoft.com/clhs/",
"offline_enabled": true,
"permissions": ["activeTab", "contextMenus", "clipboardWrite"],
"optional_permissions": ["tabs"],
"icons": {
"128": "images/clhs.png"
},
"browser_action": {
"default_title": "Browse the CLHS",
"default_icon": {"19": "images/h.png" }
},
"commands": {
"perform-default-action": {
"description": "Perform the default action",
"suggested_key": {
"default": "Ctrl+Shift+H"
}
},
"new-tab-local-index": {
"description": "New tab: Local CLHS index"
},
"new-tab-canonical-index": {
"description": "New tab: Canonical CLHS index"
},
"copy-to-clipboard-canonical-url": {
"description": "Copy to clipboard: Canonical URL",
"suggested_key": {
"default": "Ctrl+Shift+C"
}
},
"focus-or-open-local": {
"description": "Focus or open: Local CLHS"
},
"focus-or-open-canonical": {
"description": "Focus or open: Canonical CLHS"
},
"go-to-local": {
"description": "Go to: Local CLHS"
},
"go-to-canonical": {
"description": "Go to: Canonical CLHS"
}
},
"background": {
"scripts": ["libraries/global.hexstreamsoft.com/scripts/global.js",
"scripts/global.js",
"scripts/event-page.js"],
"persistent": false
},
"options_ui": {
"page": "options/index.html",
"open_in_tab": true
}
}