-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
69 lines (59 loc) · 1.37 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
{
"name": "Mighty Tab",
"version": "1.0",
"description": "allows you to group tabs and give the group a name also danny is super sexy man",
"manifest_version": 2,
"permissions" : [
"tabs",
"<all_urls>",
"contextMenus",
"storage",
"sessions",
"webNavigation"
],
"icons":{
"16" : "apple-11.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"background": {
"scripts" : ["background/miscFunctions.js",
"background/listeners.js",
"background/contextMenusHandler.js",
"background/MightyHandler.js",
"background/MightyTab.js",
"background/WindowHandler.js",
"background/StorageSyncher.js",
"background/onUnload.js"
]
},
"browser_action" :{
"default_icon" : "apple-11.png",
"default_popup": "MightyPopup.html",
"default_title": "Mighty Tabs"
},
"commands": {
"open_tab_in_current_mighty": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Open a new Tab from within the current Might."
},
"next_tab_in_mighty": {
"suggested_key": {
"default": "Alt+N"
},
"description": "Move to the next tab in the current Mighty"
},
"previous_tab_in_mighty": {
"suggested_key": {
"default": "Alt+B"
},
"description": "Move to previous tab in the current Mighty"
}
}
}