Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
.DS_STORE

dist/
*.zip

# IDEs
.idea/
1 change: 0 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

The MIT License (MIT)

Copyright (c) 2013 Glenn 'devalias' Grant (http://devalias.net)
Expand Down
10 changes: 0 additions & 10 deletions TODO.md

This file was deleted.

3 changes: 0 additions & 3 deletions _locales/en/messages.json

This file was deleted.

Binary file modified icons/NewWindowWithTabsToRight-Icon@128px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/NewWindowWithTabsToRight-Icon@16px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/NewWindowWithTabsToRight-Icon@32px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/NewWindowWithTabsToRight-Icon@48px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
232 changes: 0 additions & 232 deletions js/chromeExtensionApiAbstractions.js

This file was deleted.

28 changes: 0 additions & 28 deletions js/googleAnalytics.js

This file was deleted.

61 changes: 34 additions & 27 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,49 @@
{
"manifest_version": 3,
"minimum_chrome_version": "110",
"version": "2.0.0",
"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/NewWindowWithTabsToRight-Icon@16px.png",
"32": "icons/NewWindowWithTabsToRight-Icon@32px.png",
"48": "icons/NewWindowWithTabsToRight-Icon@48px.png",
"128": "icons/NewWindowWithTabsToRight-Icon@128px.png"
},
"default_locale": "en",
"permissions": [
"contextMenus",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"scripts": [
"js/googleAnalytics.js",
"js/chromeExtensionApiAbstractions.js",
"src/bg/background.js"
],
"persistent": true
"service_worker": "src/service_worker.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "icons/NewWindowWithTabsToRight-Icon@16px.png",
"32": "icons/NewWindowWithTabsToRight-Icon@32px.png",
"48": "icons/NewWindowWithTabsToRight-Icon@48px.png",
"128": "icons/NewWindowWithTabsToRight-Icon@128px.png"
}
},
"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."
"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"
},
"newWindowWithTabsToRight": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Create a new window with the tabs on the right."
}
"description": "Create a new window with the tabs on the right."
}
}
}
Loading