Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Qu'est-ce que Tab Label ?
Tab Label est une extension Chrome développée par Unknown, et sa fonction principale est "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Label
Téléchargez les fichiers d'extension Tab Label 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
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.
Informations de Base sur l'Extension
Nom | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
URL Officiel | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Description | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Taille du Fichier | 7.58 KB |
Nombre d'Installations | 252 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2020-04-28 |
Date de Publication | 2020-04-25 |
Évaluation | 2.14/5 Total 7 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Label", "version": "0.0.1", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_16.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |