-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
42 lines (42 loc) · 1.32 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
{
"name": "New Window With Tabs To Right",
"version": "1.0.1",
"manifest_version": 2,
"description": "This extension creates a new window with the tabs to the right of the currently selected tab.",
"homepage_url": "http://devalias.net/dev/chrome-extensions/",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"permissions": [
"tabs",
"contextMenus"
],
"icons": {
"16": "icons/[email protected]",
"48": "icons/[email protected]",
"128": "icons/[email protected]"
},
"default_locale": "en",
"background": {
"scripts": [
"js/googleAnalytics.js",
"js/chromeExtensionApiAbstractions.js",
"src/bg/background.js"
],
"persistent": true
},
"commands": {
"newWindowWithCurrentAndTabsToRight": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Create a new window with the current tab and tabs on the right."
},
"newWindowWithTabsToRight": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Create a new window with the tabs on the right."
}
}
}