Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
¿Qué es Pop out tabs to new window?
Pop out tabs to new window es una extensión de Chrome desarrollada por Ivan Novikov, y su función principal es "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Descargar Archivo CRX de la Extensión Pop out tabs to new window
Descarga archivos de extensión Pop out tabs to new window 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
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
Información Básica de la Extensión
Nombre | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL Oficial | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Descripción | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Tamaño del Archivo | 3.38 KB |
Cantidad de Instalaciones | 248 |
Versión Actual | 1.1 |
Última Actualización | 2018-03-14 |
Fecha de Publicación | 2018-03-14 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Ivan Novikov |
Tipo de Pago | free |
Sitio Web de la Extensión | https://twitter.com/ivan7237d |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |