Tab Manager
A tool for managing and organizing tabs
Was ist Tab Manager?
Tab Manager ist eine Chrome-Erweiterung, die von domsupamoe entwickelt wurde, und ihr Hauptmerkmal ist "A tool for managing and organizing tabs".
Erweiterungsscreenshots
Tab Manager-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Manager-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
The philosophy behind it is to manage all the tabs within the current window. It is often the case that there should NOT be more than 2 or 3 browser windows opened. Thus, the extension itself has a limited or no support for managing multi-window tabs. ******************** The features included in this extension: - Actions for merge, sort, and kill tabs - Toggle to detect duplicate tabs and close previous opened tabs - Search and filter tabs from the input box - Drag and drop tab item will move tab to different position - Click on the tab item will redirect to web page - Click on red x will close the current tab item - Hover and press x will close the current tab item ******************** Source Code and Documentation https://github.com/domsupamoe/tab-manager ******************** Changelog https://github.com/domsupamoe/tab-manager/blob/master/CHANGELOG.md ******************** Please feel free to create issues and PRs to contribute to the project.
Grundlegende Informationen zur Erweiterung
Name | Tab Manager |
ID | pjgghjfckgpmghploaenddaemikldhlc |
Offizielle URL | https://chromewebstore.google.com/detail/tab-manager/pjgghjfckgpmghploaenddaemikldhlc |
Beschreibung | A tool for managing and organizing tabs |
Dateigröße | 93.41 KB |
Installationsanzahl | 30 |
Aktuelle Version | 1.9.4 |
Letztes Update | 2020-08-02 |
Veröffentlichungsdatum | 2020-07-29 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | domsupamoe |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/domsupamoe/tab-manager |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Manager", "version": "1.9.4", "description": "A tool for managing and organizing tabs", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/tab_active16.png", "32": "images\/tab_active32.png", "48": "images\/tab_active48.png", "128": "images\/tab_active128.png" } }, "icons": { "16": "images\/tab_active16.png", "32": "images\/tab_active32.png", "48": "images\/tab_active48.png", "128": "images\/tab_active128.png" }, "manifest_version": 2 } |