Move Tab Left

This extension allows you to put the current tab at the beggining of the tab bar.

Qu'est-ce que Move Tab Left ?

Move Tab Left est une extension Chrome développée par mp, et sa fonction principale est "This extension allows you to put the current tab at the beggining of the tab bar.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Move Tab Left

Téléchargez les fichiers d'extension Move Tab Left 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

                        Very often you need to move the current tab to the beginning of the tab bar, to the left.

This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut.

By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom).

Update V2:
- Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".                    

Informations de Base sur l'Extension

Nom Move Tab Left Move Tab Left
ID flgjflnifhabbdliblomhkhoplfhheie
URL Officiel https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie
Description This extension allows you to put the current tab at the beggining of the tab bar.
Taille du Fichier 7.64 KB
Nombre d'Installations 207
Version Actuelle 2.1
Dernière Mise à Jour 2016-08-28
Date de Publication 2016-08-28
Évaluation 4.00/5 Total 4 Évaluations
Développeur mp
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://brostack.com
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Tab Left",
    "description": "This extension allows you to put the current tab at the beggining of the tab bar.",
    "version": "2.1",
    "browser_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_title": "Move Tab Left"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "move_tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Put tab at the beginning"
        }
    }
}