Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Cos'è Tab Cycler?
Tab Cycler è un'estensione di Chrome sviluppata da benl, e la sua funzione principale è "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Cycler
Scarica i file di estensione Tab Cycler 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
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs.
Defaults:
Alt-Shift-Left Arrow -> Cycle tab left.
Alt-Shift-Right Arrow -> Cycle tab right.
To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page)
Code hosted at: https://github.com/benletchford/chrome-tab-cycler Informazioni di Base sull'Estensione
| Nome | |
| ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
| URL Ufficiale | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
| Descrizione | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
| Dimensione del File | 5.02 KB |
| Conteggio Installazioni | 58 |
| Versione Corrente | 0.2 |
| Ultimo Aggiornamento | 2016-08-01 |
| Data di Pubblicazione | 2016-07-31 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | benl |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Cycler",
"version": "0.2",
"icons": {
"128": "icon.png"
},
"permissions": [
"tabs",
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"left": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "Cycle to left tab."
},
"right": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "Cycle to right tab."
}
}
} | |