forked from zweicoder/YourTab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 975 Bytes
/
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
{
"manifest_version": 2,
"name": "YourTab",
"version": "0.9.0",
"description": "Keeping Tabs on them Tabs",
"browser_action": {
"default_popup": "src/popup/popup.html",
"default_title": "YourTab",
"default_icon": "icons/icon48.png"
},
"background": {
"page": "src/background/background.html",
"persistent": false
},
"commands": {
"save-current": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Save current tab."
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/modal/modal.js",
"assets/jquery.min.js",
"assets/mithril.min.js"
]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"options_page": "src/options/options.html",
"permissions": [
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"contextMenus"
]
}