ShuffleTab

Keyboard shortcut tool for managing tabs and windows

Qu'est-ce que ShuffleTab ?

ShuffleTab est une extension Chrome développée par lausam.dev, et sa fonction principale est "Keyboard shortcut tool for managing tabs and windows".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ShuffleTab

Téléchargez les fichiers d'extension ShuffleTab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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...                    

Informations de Base sur l'Extension

Nom ShuffleTab ShuffleTab
ID dgdnnanaohagafffokijmgcfnmhgcmeb
URL Officiel https://chromewebstore.google.com/detail/shuffletab/dgdnnanaohagafffokijmgcfnmhgcmeb
Description Keyboard shortcut tool for managing tabs and windows
Taille du Fichier 453 KB
Nombre d'Installations 67
Version Actuelle 1.50
Dernière Mise à Jour 2017-05-06
Date de Publication 2017-05-06
Évaluation 5.00/5 Total 6 Évaluations
Développeur lausam.dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}