|
1 | 1 | { |
| 2 | + "manifest_version": 3, |
| 3 | + "minimum_chrome_version": "110", |
| 4 | + "version": "2.0.0", |
2 | 5 | "name": "New Window With Tabs To Right", |
3 | | - "version": "1.0.1", |
4 | | - "manifest_version": 2, |
5 | 6 | "description": "This extension creates a new window with the tabs to the right of the currently selected tab.", |
6 | 7 | "homepage_url": "http://devalias.net/dev/chrome-extensions/", |
7 | | - "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'", |
8 | | - "permissions": [ |
9 | | - "tabs", |
10 | | - "contextMenus" |
11 | | - ], |
| 8 | + "default_locale": "en", |
12 | 9 | "icons": { |
13 | 10 | "16": "icons/NewWindowWithTabsToRight-Icon@16px.png", |
14 | 11 | "48": "icons/NewWindowWithTabsToRight-Icon@48px.png", |
15 | 12 | "128": "icons/NewWindowWithTabsToRight-Icon@128px.png" |
16 | 13 | }, |
17 | | - "default_locale": "en", |
| 14 | + "permissions": [ |
| 15 | + "contextMenus" |
| 16 | + ], |
| 17 | + "content_security_policy": { |
| 18 | + "extension_pages": "script-src 'self'; object-src 'self'" |
| 19 | + }, |
18 | 20 | "background": { |
19 | | - "scripts": [ |
20 | | - "js/googleAnalytics.js", |
21 | | - "js/chromeExtensionApiAbstractions.js", |
22 | | - "src/bg/background.js" |
23 | | - ], |
24 | | - "persistent": true |
| 21 | + "service_worker": "src/service_worker.js", |
| 22 | + "type": "module" |
25 | 23 | }, |
26 | 24 | "commands": { |
27 | | - "newWindowWithCurrentAndTabsToRight": { |
28 | | - "suggested_key": { |
29 | | - "default": "Ctrl+Shift+Y", |
30 | | - "mac": "Command+Shift+Y" |
31 | | - }, |
32 | | - "description": "Create a new window with the current tab and tabs on the right." |
| 25 | + "newWindowWithCurrentAndTabsToRight": { |
| 26 | + "suggested_key": { |
| 27 | + "default": "Ctrl+Shift+Y", |
| 28 | + "mac": "Command+Shift+Y" |
| 29 | + }, |
| 30 | + "description": "Create a new window with the current tab and tabs on the right." |
| 31 | + }, |
| 32 | + "newWindowWithTabsToRight": { |
| 33 | + "suggested_key": { |
| 34 | + "default": "Ctrl+Shift+U", |
| 35 | + "mac": "Command+Shift+U" |
33 | 36 | }, |
34 | | - "newWindowWithTabsToRight": { |
35 | | - "suggested_key": { |
36 | | - "default": "Ctrl+Shift+U", |
37 | | - "mac": "Command+Shift+U" |
38 | | - }, |
39 | | - "description": "Create a new window with the tabs on the right." |
40 | | - } |
| 37 | + "description": "Create a new window with the tabs on the right." |
| 38 | + } |
41 | 39 | } |
42 | 40 | } |
0 commit comments