TabFusion
Combine all your Chrome tabs into a single window
Cos'è TabFusion?
TabFusion è un'estensione di Chrome sviluppata da https://heatherrivers.com, e la sua funzione principale è "Combine all your Chrome tabs into a single window".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TabFusion
Scarica i file di estensione TabFusion 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
TabFusion lets you combine all your tabs into a single window in a highly configurable way. * Choose your own keyboard shortcut or use the browser button * Decide which types of windows to combine (popups, panels, apps) * Exclude tabs based on url patterns
Informazioni di Base sull'Estensione
Nome | TabFusion |
ID | abompjhjgaeodboocegeokagjjiafobj |
URL Ufficiale | https://chromewebstore.google.com/detail/tabfusion/abompjhjgaeodboocegeokagjjiafobj |
Descrizione | Combine all your Chrome tabs into a single window |
Dimensione del File | 41.64 KB |
Conteggio Installazioni | 324 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2015-03-22 |
Data di Pubblicazione | 2015-03-22 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | https://heatherrivers.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/rivers/tabfusion |
URL della Pagina di Aiuto | https://github.com/rivers/tabfusion/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TabFusion", "version": "1.0.1", "manifest_version": 2, "description": "Combine all your Chrome tabs into a single window", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "fusion.js", "listener.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "commands": { "fuseTabs": { "description": "Fuse all tabs", "suggested_key": { "windows": "Ctrl+Shift+T", "mac": "Command+MacCtrl+T", "chromeos": "Ctrl+Shift+T", "linux": "Ctrl+Shift+T" } } }, "author": "Heather Rivers", "homepage_url": "https:\/\/github.com\/rivers\/tabfusion", "minimum_chrome_version": "40", "permissions": [ "tabs", "windows", "storage" ], "offline_enabled": true } |