Tab Manager
A tool for managing and organizing tabs
Qu'est-ce que Tab Manager ?
Tab Manager est une extension Chrome développée par domsupamoe, et sa fonction principale est "A tool for managing and organizing tabs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Manager
Téléchargez les fichiers d'extension Tab Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Tab Manager |
ID | pjgghjfckgpmghploaenddaemikldhlc |
URL Officiel | https://chromewebstore.google.com/detail/tab-manager/pjgghjfckgpmghploaenddaemikldhlc |
Description | A tool for managing and organizing tabs |
Taille du Fichier | 93.41 KB |
Nombre d'Installations | 30 |
Version Actuelle | 1.9.4 |
Dernière Mise à Jour | 2020-08-02 |
Date de Publication | 2020-07-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | domsupamoe |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/domsupamoe/tab-manager |
Langues Prises en Charge | 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 } |