TabFusion
Combine all your Chrome tabs into a single window
Co to jest TabFusion?
TabFusion to rozszerzenie Chrome opracowane przez https://heatherrivers.com, a jego główną funkcją jest „Combine all your Chrome tabs into a single window”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TabFusion
Pobierz pliki rozszerzeń TabFusion w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | abompjhjgaeodboocegeokagjjiafobj |
| Oficjalny URL | https://chromewebstore.google.com/detail/tabfusion/abompjhjgaeodboocegeokagjjiafobj |
| Opis | Combine all your Chrome tabs into a single window |
| Rozmiar pliku | 41.64 KB |
| Liczba instalacji | 324 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2015-03-22 |
| Data Publikacji | 2015-03-22 |
| Ocena | 5.00/5 Łącznie 4 Oceny |
| Deweloper | https://heatherrivers.com |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/rivers/tabfusion |
| Adres URL Strony Pomocy | https://github.com/rivers/tabfusion/issues |
| Obsługiwane Języki | 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
} | |