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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension creates a new window with the tabs to the right of the currently selected tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में New Window With Tabs To Right एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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."
        }
    }
}