Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
O que é Pop out tabs to new window?
Pop out tabs to new window é uma extensão do Chrome desenvolvida por Ivan Novikov, e sua principal característica é "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Baixar o arquivo CRX da Extensão Pop out tabs to new window
Baixe arquivos de extensão Pop out tabs to new window no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL Oficial | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Descrição | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Tamanho do Arquivo | 3.38 KB |
Contagem de Instalações | 248 |
Versão Atual | 1.1 |
Última Atualização | 2018-03-14 |
Data de Publicação | 2018-03-14 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Ivan Novikov |
Tipo de Pagamento | free |
Site da Extensão | https://twitter.com/ivan7237d |
Idiomas Suportados | 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" } } } |