Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

Qu'est-ce que Tab Mover (Move tabs with keyboard shortcuts) ?

Tab Mover (Move tabs with keyboard shortcuts) est une extension Chrome développée par Dennis Paagman, et sa fonction principale est "Move your tabs around with keyboard shortcuts".

Télécharger le fichier CRX de l'extension Tab Mover (Move tabs with keyboard shortcuts)

Téléchargez les fichiers d'extension Tab Mover (Move tabs with keyboard shortcuts) 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

                        Move your tabs around with keyboard shortcuts.

Installation instructions:

Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]                    

Informations de Base sur l'Extension

Nom Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
URL Officiel https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
Description Move your tabs around with keyboard shortcuts
Taille du Fichier 19.11 KB
Nombre d'Installations 46
Version Actuelle 1.2
Dernière Mise à Jour 2016-11-25
Date de Publication 2016-11-25
Évaluation 3.67/5 Total 3 Évaluations
Développeur Dennis Paagman
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Mover (Move tabs with keyboard shortcuts)",
    "short_name": "Tab Mover",
    "description": "Move your tabs around with keyboard shortcuts",
    "version": "1.2",
    "author": "Dennis Paagman",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "tabMover.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "move-tab-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Move current tab to the left"
        },
        "move-tab-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Move current tab to the right"
        }
    }
}