Tab Manager Shortcuts

Manage your chrome tabs with keyboard shortcuts.

Tab Manager Shortcuts क्या है?

Tab Manager Shortcuts Daniel Pham द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage your chrome tabs with keyboard shortcuts."।

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

screenshot

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

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

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

                        Reorder and manage the chrome tabs with customizable keyboard shortcuts

As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419).

Source Code:
https://github.com/danhp/tab-manager-chrome                    

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

नाम Tab Manager Shortcuts Tab Manager Shortcuts
ID oofoadncochbkbpebpbndghocapamchi
आधिकारिक URL https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi
विवरण Manage your chrome tabs with keyboard shortcuts.
फ़ाइल का आकार 21.21 KB
स्थापना संख्या 314
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2016-12-27
प्रकाशन तिथि 2016-12-27
रेटिंग 3.36/5 कुल 11 रेटिंग्स
डेवलपर Daniel Pham
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/danhp/tab-manager-chrome
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Manager Shortcuts",
    "version": "2.0.0",
    "description": "Manage your chrome tabs with keyboard shortcuts.",
    "homepage_url": "https:\/\/phamdaniel.github.io",
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "background": {
        "persisten": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "tab_manager_pin_current": {
            "description": "Pin or unpin current tab."
        },
        "tab_manager_unpin_all": {
            "description": "Unpin all tabs in current window"
        },
        "tab_manager_move_left": {
            "description": "Move selected tab left"
        },
        "tab_manager_move_right": {
            "description": "Move selected tab right"
        },
        "tab_manager_browse_left": {
            "description": "Switch\/browse tab left"
        },
        "tab_manager_browse_right": {
            "description": "Switch\/browse tab right"
        }
    }
}