ShuffleTab

Keyboard shortcut tool for managing tabs and windows

ShuffleTab क्या है?

ShuffleTab lausam.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keyboard shortcut tool for managing tabs and windows"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        By holding control along with the arrow keys, tabs can be arranged quickly and easily within a window, or transferred between them. 
Move tabs left or right, group tabs in a new window, and return them to their previous window all without using a mouse!

--- Update 1.50 ------------------------
Added customisation options accessible by clicking on the ShuffleTab logo and going to the Settings tab:
    -Decide the behaviour of Control+Down; either moves the active tab,
     all until far left, or all until far right.
    -Determine if Control+Up returns a tab immediately or if it goes to far
     left first.
    -Tabs can now remember their position in the previous window; decide 
     whether you want them to return to it.
and more...                    

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

नाम ShuffleTab ShuffleTab
ID dgdnnanaohagafffokijmgcfnmhgcmeb
आधिकारिक URL https://chromewebstore.google.com/detail/shuffletab/dgdnnanaohagafffokijmgcfnmhgcmeb
विवरण Keyboard shortcut tool for managing tabs and windows
फ़ाइल का आकार 453 KB
स्थापना संख्या 67
वर्तमान संस्करण 1.50
अंतिम अपडेट 2017-05-06
प्रकाशन तिथि 2017-05-06
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर lausam.dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShuffleTab",
    "description": "Keyboard shortcut tool for managing tabs and windows",
    "version": "1.50",
    "offline_enabled": true,
    "icons": {
        "16": "icon2.png",
        "32": "icon2.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon2.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "leftTab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Move left"
        },
        "rightTab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Move right"
        },
        "firstTab": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Return"
        },
        "newWindow": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "New window"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}