forked from kumabook/bebop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
84 lines (84 loc) · 1.89 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
{
"name": "bebop",
"version": "0.1.82",
"manifest_version": 2,
"description": "Offer emacs key-bindings and command line interface like helm",
"author": "Hiroki Kumamoto",
"applications": {
"gecko": {
"id": "bebop@british-caledonia",
"strict_min_version": "45.0"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png"
},
"permissions": [
"tabs",
"activeTab",
"history",
"bookmarks",
"storage",
"cookies",
"sessions",
"system.display",
"search",
"<all_urls>"
],
"background": {
"scripts": ["background/bundle.js"]
},
"default_locale": "en",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_scripts/bundle.js"],
"run_at": "document_start",
"match_about_blank": true
}
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"64": "icons/icon-64.png"
},
"theme_icons": [{
"light": "icons/icon-dark-16.png",
"dark": "icons/icon-16.png",
"size": 16
}, {
"light": "icons/icon-dark-32.png",
"dark": "icons/icon-32.png",
"size": 32
}, {
"light": "icons/icon-dark-64.png",
"dark": "icons/icon-64.png",
"size": 64
}],
"default_title": "button label",
"default_popup": "popup/index.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Comma",
"mac" : "MacCtrl+Comma",
"linux" : "Ctrl+Comma"
}
},
"toggle_popup_window": {
"description": "Toggle popup window"
},
"toggle_content_popup": {
"description": "Toggle popup in current content"
}
},
"options_ui": {
"page": "options_ui/index.html"
},
"web_accessible_resources": ["images/*.png", "popup/*"]
}