New Tab in Group

Opens a new tab in the current group via keyboard shortcut

New Tab in Group क्या है?

New Tab in Group Toby Wolff-Maritz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens a new tab in the current group via keyboard shortcut"।

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

screenshot

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

crx प्रारूप में New Tab in Group एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple extension that opens a new tab in the current tab group using a shortcut.

Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J                    

एक्सटेंशन की मूल जानकारी

नाम New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
आधिकारिक URL https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
विवरण Opens a new tab in the current group via keyboard shortcut
फ़ाइल का आकार 9.3 KB
स्थापना संख्या 63
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2022-07-25
प्रकाशन तिथि 2022-07-23
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Toby Wolff-Maritz
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/tmaritz/chrome-extension-new-tab-in-group
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab in Group",
    "version": "0.0.1",
    "description": "Opens a new tab in the current group via keyboard shortcut",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "icons": {
        "16": "assets\/layer-plus16.png",
        "32": "assets\/layer-plus32.png",
        "64": "assets\/layer-plus64.png",
        "128": "assets\/layer-plus128.png"
    }
}