TabFusion
Combine all your Chrome tabs into a single window
Was ist TabFusion?
TabFusion ist eine Chrome-Erweiterung, die von https://heatherrivers.com entwickelt wurde, und ihr Hauptmerkmal ist "Combine all your Chrome tabs into a single window".
Erweiterungsscreenshots
TabFusion-Erweiterungs-CRX-Datei herunterladen
Laden Sie TabFusion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | TabFusion |
ID | abompjhjgaeodboocegeokagjjiafobj |
Offizielle URL | https://chromewebstore.google.com/detail/tabfusion/abompjhjgaeodboocegeokagjjiafobj |
Beschreibung | Combine all your Chrome tabs into a single window |
Dateigröße | 41.64 KB |
Installationsanzahl | 324 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2015-03-22 |
Veröffentlichungsdatum | 2015-03-22 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://heatherrivers.com |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/rivers/tabfusion |
Hilfeseite URL | https://github.com/rivers/tabfusion/issues |
Unterstützte Sprachen | 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 } |