Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
¿Qué es Tab Keys?
Tab Keys es una extensión de Chrome desarrollada por thekiteeatingtree, y su función principal es "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".
Descargar Archivo CRX de la Extensión Tab Keys
Descarga archivos de extensión Tab Keys en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
Información Básica de la Extensión
Nombre | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
URL Oficial | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
Descripción | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
Tamaño del Archivo | 4.5 KB |
Cantidad de Instalaciones | 21 |
Versión Actual | 1.0 |
Última Actualización | 2017-07-27 |
Fecha de Publicación | 2017-07-27 |
Desarrollador | thekiteeatingtree |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/TheKiteEatingTree/TabKeys |
URL de la Página de Ayuda | https://github.com/TheKiteEatingTree/TabKeys/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |