New Window With Tabs To Right

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

New Window With Tabs To Right란 무엇입니까?

New Window With Tabs To Right은(는) https://devalias.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension creates a new window with the tabs to the right of the currently selected tab."입니다.

확장 프로그램 스크린샷

screenshot

New Window With Tabs To Right 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 New Window With Tabs To Right New Window With Tabs To Right
ID ldahcfljppchbfgdokomobmfdfplaman
공식 URL https://chromewebstore.google.com/detail/new-window-with-tabs-to-r/ldahcfljppchbfgdokomobmfdfplaman
설명 This extension creates a new window with the tabs to the right of the currently selected tab.
파일 크기 20.51 KB
설치 횟수 814
현재 버전 1.0.1
최근 업데이트 2018-07-14
출시 날짜 2018-07-13
평점 4.73/5 총 15 개의 평점
개발자 https://devalias.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://devalias.net/dev/chrome-extensions/new-window-with-tabs-to-right/
지원되는 언어 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."
        }
    }
}