Switch tabs shortcuts

Adds custom shortcuts for switching tabs.

Qu'est-ce que Switch tabs shortcuts ?

Switch tabs shortcuts est une extension Chrome développée par Yutaro Yoshii, et sa fonction principale est "Adds custom shortcuts for switching tabs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Switch tabs shortcuts

Téléchargez les fichiers d'extension Switch tabs 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

                        This extension adds custom shortcuts for switching tabs.
After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts


The default key bindings are as follows:

Jump to the previous open tab
mac: "Command+Shift+Left"
other platforms: "Ctrl+Shift+Left"
        
Jump to the next open tab
mac: "Command+Shift+Right"
other platforms: "Ctrl+Shift+Right"
        
Jump to the last open tab
mac: "Command+Shift+Up"
other platforms: "Ctrl+Shift+Up"

Jump to the first open tab
mac: "Command+Shift+Down"
other platforms: "Ctrl+Shift+Down"                    

Informations de Base sur l'Extension

Nom Switch tabs shortcuts Switch tabs shortcuts
ID fejclhnofpjonlkijaekjpoehpinhlab
URL Officiel https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab
Description Adds custom shortcuts for switching tabs.
Taille du Fichier 8.29 KB
Nombre d'Installations 255
Version Actuelle 1.0
Dernière Mise à Jour 2023-10-09
Date de Publication 2020-03-03
Évaluation 5.00/5 Total 3 Évaluations
Développeur Yutaro Yoshii
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://developer.chrome.com/docs/webstore/program-policies/privacy
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switch tabs shortcuts",
    "short_name": "Switch tabs",
    "version": "1.0",
    "description": "Adds custom shortcuts for switching tabs.",
    "author": "Yutaro Yoshii",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "tab_left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "Jump to the previous open tab"
        },
        "tab_right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Command+Shift+Right"
            },
            "description": "Jump to the next open tab"
        },
        "tab_first": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up",
                "mac": "Command+Shift+Up"
            },
            "description": "Jump to the last open tab"
        },
        "tab_last": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down",
                "mac": "Command+Shift+Down"
            },
            "description": "Jump to the first open tab"
        }
    }
}