Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
¿Qué es Tab Mover (Move tabs with keyboard shortcuts)?
Tab Mover (Move tabs with keyboard shortcuts) es una extensión de Chrome desarrollada por Dennis Paagman, y su función principal es "Move your tabs around with keyboard shortcuts".
Descargar Archivo CRX de la Extensión Tab Mover (Move tabs with keyboard shortcuts)
Descarga archivos de extensión Tab Mover (Move tabs with keyboard shortcuts) 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
Move your tabs around with keyboard shortcuts. Installation instructions: Install the extension directly from the Chrome Web Store Scroll to the bottom of your 'Extensions' preferences Click 'Keyboard Shortcuts' at the bottom right Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]
Información Básica de la Extensión
Nombre | |
ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
URL Oficial | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
Descripción | Move your tabs around with keyboard shortcuts |
Tamaño del Archivo | 19.11 KB |
Cantidad de Instalaciones | 46 |
Versión Actual | 1.2 |
Última Actualización | 2016-11-25 |
Fecha de Publicación | 2016-11-25 |
Calificación | 3.67/5 Total de 3 Calificaciones |
Desarrollador | Dennis Paagman |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Mover (Move tabs with keyboard shortcuts)", "short_name": "Tab Mover", "description": "Move your tabs around with keyboard shortcuts", "version": "1.2", "author": "Dennis Paagman", "icons": { "128": "icon-128.png", "64": "icon-64.png" }, "background": { "scripts": [ "tabMover.js" ] }, "permissions": [ "activeTab" ], "commands": { "move-tab-left": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Move current tab to the left" }, "move-tab-right": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Move current tab to the right" } } } |