Global New Tab Shortcut

This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…

Global New Tab Shortcut क्या है?

Global New Tab Shortcut Wout Mertens द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…"।

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

screenshot

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

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

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

                        This allows you to open a new tab from within any application with a keyboard shortcut.

This means that as soon as you think of a search to do or web page to open, you are just one keypress away from doing it.

!!! You MUST select a keyboard shortcut after installing !!!

To use, install the extension and then click on "Keyboard Shortcuts" at the bottom of the extensions page. There, select a shortcut key for "Global New Tab Shortcut" and be sure to change the dropdown to "Global" afterwards.

This extension doesn't add handlers to pages or anything fishy. It uses the built-in Chrome keyboard shortcut handling to create a new tab with the built-in Chrome APIs.

Source is at https://github.com/wmertens/global-chrome-tab                    

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

नाम Global New Tab Shortcut Global New Tab Shortcut
ID dcngopenklmnfdlfocljeaokkhcplong
आधिकारिक URL https://chromewebstore.google.com/detail/global-new-tab-shortcut/dcngopenklmnfdlfocljeaokkhcplong
विवरण This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…
फ़ाइल का आकार 22.54 KB
स्थापना संख्या 178
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2022-11-02
प्रकाशन तिथि 2016-06-18
रेटिंग 4.13/5 कुल 8 रेटिंग्स
डेवलपर Wout Mertens
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/wmertens/global-chrome-tab
सहायता पृष्ठ URL https://github.com/wmertens/global-chrome-tab/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Global New Tab Shortcut",
    "version": "1.2.1",
    "manifest_version": 3,
    "icons": {
        "128": "new-tab.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "new-tab": {
            "suggested_key": {
                "default": "Alt+G",
                "mac": "Command+Shift+S",
                "linux": "Alt+G"
            },
            "description": "Switch to a new tab from any application, ready for searching!"
        },
        "new-window": {
            "description": "Switch to a new window from any application, ready for searching!"
        },
        "new-incognito-window": {
            "description": "Switch to a new *incognito* window from any application, ready for searching! To use this, you need to check the \"Allow in incognito\" checkbox of the extension."
        }
    }
}