Tab Rename
Adds the ability to change the title of your tabs
Cos'è Tab Rename?
Tab Rename è un'estensione di Chrome sviluppata da Realyze, e la sua funzione principale è "Adds the ability to change the title of your tabs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Rename
Scarica i file di estensione Tab Rename in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is a simple extension to rename the active tab. It works by changing the title attribute of the DOM.
Informazioni di Base sull'Estensione
Nome | Tab Rename |
ID | lgoehggcekcijojdfdifnfknonmeillp |
URL Ufficiale | https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp |
Descrizione | Adds the ability to change the title of your tabs |
Dimensione del File | 12.24 KB |
Conteggio Installazioni | 551 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-02-23 |
Data di Pubblicazione | 2021-02-22 |
Valutazione | 3.17/5 Totale 6 Valutazioni |
Sviluppatore | Realyze |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } } |