Move Tab to Next Window
One-click to move a tab, NOW with Tab Groups support!
Cos'è Move Tab to Next Window?
Move Tab to Next Window è un'estensione di Chrome sviluppata da Roman Shevtsov, e la sua funzione principale è "One-click to move a tab, NOW with Tab Groups support!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Move Tab to Next Window
Scarica i file di estensione Move Tab to Next 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
Especially useful for these amazing multi-monitor setups when it's too annoying to drag tabs around between windows. ## Quick feature list - the source tab position is saved in all windows, so if it's moved back into a window, it moves into its original position - if the tab is in a tab group, when moving it the identical group will be created or used in another window. When moving back to original window the tab will return into its original group - multiple tabs move - select multiple tabs (use shift or cmd/ctrl) and move all of them into the next window in the same order - if there is only 1 window, a new window will be opened on move - keyboard shortcut support Open sourced on Github for transparency.
Informazioni di Base sull'Estensione
Nome | Move Tab to Next Window |
ID | ibpemckpjfpmhlagogddlajhaiemdjaf |
URL Ufficiale | https://chromewebstore.google.com/detail/move-tab-to-next-window/ibpemckpjfpmhlagogddlajhaiemdjaf |
Descrizione | One-click to move a tab, NOW with Tab Groups support! |
Dimensione del File | 13.82 KB |
Conteggio Installazioni | 452 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2023-08-31 |
Data di Pubblicazione | 2020-06-04 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | Roman Shevtsov |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/rshev/MoveTabToNextWindow |
URL della Pagina di Aiuto | https://github.com/rshev/MoveTabToNextWindow |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Move Tab to Next Window", "version": "1.1.0", "description": "One-click to move a tab, NOW with Tab Groups support!", "homepage_url": "https:\/\/github.com\/rshev\/MoveTabToNextWindow", "permissions": [ "tabGroups", "storage" ], "background": { "service_worker": "index.js" }, "icons": { "16": "icon-dark-outlined-16.png", "32": "icon-dark-outlined-32.png", "48": "icon-dark-outlined-48.png", "128": "icon-dark-outlined-128.png" }, "action": { "default_title": "Move Tab to Next Window", "default_icon": { "16": "icon-light-outlined-16.png", "32": "icon-light-outlined-32.png" } }, "commands": { "move-tab": { "description": "Move Tab to Next Window" } } } |