-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (52 loc) · 1.26 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
{
"name": "TABTAB",
"description": "A 360 degree manager for your tabs",
"version": "1.0",
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/get_started16.png",
"32": "images/get_started32.png",
"48": "images/get_started48.png",
"128": "images/get_started128.png"
}
},
"manifest_version": 2,
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Open the menu option"
}
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"tabs",
"activeTab",
"declarativeContent",
"storage",
"contextMenus",
"notifications"
],
"icons": {
"16": "images/get_started16.png",
"32": "images/get_started32.png",
"48": "images/get_started48.png",
"128": "images/get_started128.png"
},
"content_security_policy": "object-src 'self'; child-src 'self'; default-src 'self';",
"options_page": "options.html",
"devtools_page": "devtools/devtools.html",
"content_scripts": [
{
"matches": ["https://developer.chrome.com/*"],
"js": ["contentScripts/main.js"]
}
],
"incognito": "split"
}