Switch Tab Shortcut

Customize chrome shortcut to switch tabs

Wat is Switch Tab Shortcut?

Switch Tab Shortcut is een Chrome-extensie ontwikkeld door Stanley Guevara, en de belangrijkste functie is "Customize chrome shortcut to switch tabs".

Download het CRX-bestand van de extensie Switch Tab Shortcut

Download Switch Tab Shortcut-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Simple extension for switching to next/previous tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

Basisinformatie over de Extensie

Naam Switch Tab Shortcut Switch Tab Shortcut
ID pfeobfgjcmcpgkodpodibnggeanmoddk
Officiële URL https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk
Beschrijving Customize chrome shortcut to switch tabs
Bestandsgrootte 3.37 KB
Aantal Installaties 27
Huidige Versie 1.0
Laatst Bijgewerkt 2016-10-16
Publicatiedatum 2016-10-16
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Stanley Guevara
Betalingswijze free
Extensiewebsite https://github.com/stanleyguevara/chrome-switch-tab-shortcut
Help Pagina-URL https://github.com/stanleyguevara/chrome-switch-tab-shortcut
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to switch tabs",
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right",
                "mac": "Command+Right"
            },
            "description": "Next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            },
            "description": "Prev tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}