SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
Qu'est-ce que SameTab - keep only one copy of the tab open ?
SameTab - keep only one copy of the tab open est une extension Chrome développée par valentin.alekseev, et sa fonction principale est "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".
Télécharger le fichier CRX de l'extension SameTab - keep only one copy of the tab open
Téléchargez les fichiers d'extension SameTab - keep only one copy of the tab open 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
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
Informations de Base sur l'Extension
Nom | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
URL Officiel | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Description | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
Taille du Fichier | 8.9 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-02-16 |
Date de Publication | 2016-02-16 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | valentin.alekseev |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/valentinalexeev/chrome-sametab |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |