Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
Cos'è Switch tabs shortcuts?
Switch tabs shortcuts è un'estensione di Chrome sviluppata da Yutaro Yoshii, e la sua funzione principale è "Adds custom shortcuts for switching tabs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Switch tabs shortcuts
Scarica i file di estensione Switch tabs shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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"
Informazioni di Base sull'Estensione
Nome | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
URL Ufficiale | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
Descrizione | Adds custom shortcuts for switching tabs. |
Dimensione del File | 8.29 KB |
Conteggio Installazioni | 255 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-10-09 |
Data di Pubblicazione | 2020-03-03 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Yutaro Yoshii |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://developer.chrome.com/docs/webstore/program-policies/privacy |
Lingue Supportate | 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" } } } |