Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Cos'è Pop out tabs to new window?
Pop out tabs to new window è un'estensione di Chrome sviluppata da Ivan Novikov, e la sua funzione principale è "Click the extension's toolbar button to pop out selected tab(s) to a new window.".
Scarica il file CRX dell'estensione Pop out tabs to new window
Scarica i file di estensione Pop out tabs to new window in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL Ufficiale | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
Descrizione | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
Dimensione del File | 3.38 KB |
Conteggio Installazioni | 248 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2018-03-14 |
Data di Pubblicazione | 2018-03-14 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Ivan Novikov |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://twitter.com/ivan7237d |
Lingue Supportate | 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" } } } |