Tab Hot Key
Define hotkeys to open or focus frequently used tabs.
¿Qué es Tab Hot Key?
Tab Hot Key es una extensión de Chrome desarrollada por https://solvenium.com, y su función principal es "Define hotkeys to open or focus frequently used tabs.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tab Hot Key
Descarga archivos de extensión Tab Hot Key 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
Jump to frequently used websites using keyboard shortcuts. Press Alt + J, and then a defined hot key to open a website. If a website is already opened then Tab Hot Key activates the existing tab. Otherwise it open the website in a new tab. Unlike other shortcut extensions, Tab Hot Key doesn't inject any scripts in your websites. Instead, our extension opens up a small independent popup just for the moment to capture your shortcut key. It can work globally! You don't have to be in Chrome to use your shortcuts. Just change the base hot key scope from "In Chrome" to Global in chrome://extensions/shortcuts. Unlike other shortcut extensions that work globally, this one doesn't require any additional software.
Información Básica de la Extensión
Nombre | Tab Hot Key |
ID | amdglafidmblcmffjcbgkmbogkenfdjh |
URL Oficial | https://chromewebstore.google.com/detail/tab-hot-key/amdglafidmblcmffjcbgkmbogkenfdjh |
Descripción | Define hotkeys to open or focus frequently used tabs. |
Tamaño del Archivo | 13.61 KB |
Cantidad de Instalaciones | 25 |
Versión Actual | 0.1.0 |
Última Actualización | 2022-04-11 |
Fecha de Publicación | 2022-04-09 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://solvenium.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Hot Key", "version": "0.1.0", "description": "Define hotkeys to open or focus frequently used tabs.", "icons": { "128": "icon128.png" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "commands": { "jump": { "suggested_key": { "default": "Alt+J" }, "description": "Jump To Tab" } } } |