Tab Deduper
An extension that allows the user to deduplicate tabs.
Qu'est-ce que Tab Deduper ?
Tab Deduper est une extension Chrome développée par Trevor Siemens, et sa fonction principale est "An extension that allows the user to deduplicate tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Deduper
Téléchargez les fichiers d'extension Tab Deduper 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
Tab Deduper is an extension to find and remove duplicate Chrome tabs. Unlike other currently available extensions which dedup tabs, Tab Deduper differentiates itself in the following ways: - Duplicate tabs are not automatically closed. A list of duplicated tabs are presented, allowing for precise control over which tab gets closed. - Use of text OR regular expression based settings to control how tabs are compared, including use of title, fragment, and doing sed-like regex replacements on URLs. This last feature is very useful if you use other extensions which modify your tab URLs.
Informations de Base sur l'Extension
Nom | Tab Deduper |
ID | fpcohiaaphpfoneofdlabjnpipbnkplj |
URL Officiel | https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj |
Description | An extension that allows the user to deduplicate tabs. |
Taille du Fichier | 26.73 KB |
Nombre d'Installations | 1,259 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2024-01-14 |
Date de Publication | 2018-07-18 |
Évaluation | 4.67/5 Total 9 Évaluations |
Développeur | Trevor Siemens |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tsiemens/ChromeTabDeduper |
URL de la Page d'Aide | https://github.com/tsiemens/ChromeTabDeduper/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Deduper", "description": "An extension that allows the user to deduplicate tabs.", "version": "1.2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "eventPage.js" }, "options_page": "options.html", "permissions": [ "tabs", "activeTab", "storage", "contextMenus" ] } |