Tab Rename
Adds the ability to change the title of your tabs
Qu'est-ce que Tab Rename ?
Tab Rename est une extension Chrome développée par Realyze, et sa fonction principale est "Adds the ability to change the title of your tabs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Rename
Téléchargez les fichiers d'extension Tab Rename 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 is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Informations de Base sur l'Extension
Nom | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
URL Officiel | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Description | Adds the ability to change the title of your tabs |
Taille du Fichier | 12.24 KB |
Nombre d'Installations | 551 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-02-23 |
Date de Publication | 2021-02-22 |
Évaluation | 3.17/5 Total 6 Évaluations |
Développeur | Realyze |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Rename", "description": "Adds the ability to change the title of your tabs", "version": "1.0", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "icons": { "16": "icons\/tag16.png", "48": "icons\/pen-icon48.png", "128": "icons\/pen-icon128.png" }, "browser_action": { "default_icon": "icons\/tag16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "rename.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+R" } } } } |