New Window With Tabs To Right

This extension creates a new window with the tabs to the right of the currently selected tab.

O que é New Window With Tabs To Right?

New Window With Tabs To Right é uma extensão do Chrome desenvolvida por https://devalias.net, e sua principal característica é "This extension creates a new window with the tabs to the right of the currently selected tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão New Window With Tabs To Right

Baixe arquivos de extensão New Window With Tabs To Right no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This is a simple little extension that I wanted to make my life a little easier.

It lets you create a new window with the tabs to the right (optionally including the current tab)

My main reason for wanting this was to more effectively make use of the 'Sesh' extension by Yuji Kosugi when I forgot to open a new window *before* opening a ton of tabs.

If you have any comments, criticisms, praise, hatred, marriage proposals, fluffy bunnies, or transdimensional gateway blueprints, feel free to send them through to me at [email protected] (Make sure to mention the extension name in the subject so I know what you're talking about!)

This extension is open source and can be found over on GitHub: https://github.com/0xdevalias/chrome-NewWindowWithTabsToRight                    

Informações Básicas da Extensão

Nome New Window With Tabs To Right New Window With Tabs To Right
ID ldahcfljppchbfgdokomobmfdfplaman
URL Oficial https://chromewebstore.google.com/detail/new-window-with-tabs-to-r/ldahcfljppchbfgdokomobmfdfplaman
Descrição This extension creates a new window with the tabs to the right of the currently selected tab.
Tamanho do Arquivo 20.51 KB
Contagem de Instalações 814
Versão Atual 1.0.1
Última Atualização 2018-07-14
Data de Publicação 2018-07-13
Classificação 4.73/5 Total de 15 Avaliações
Desenvolvedor https://devalias.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://devalias.net/dev/chrome-extensions/new-window-with-tabs-to-right/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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."
        }
    }
}