Tab Label
This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Cos'è Tab Label?
Tab Label è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tab Label
Scarica i file di estensione Tab Label 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 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.
Informazioni di Base sull'Estensione
Nome | Tab Label |
ID | jenllplbncahmaikpkppcikmfadialdk |
URL Ufficiale | https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk |
Descrizione | This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with… |
Dimensione del File | 7.58 KB |
Conteggio Installazioni | 252 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2020-04-28 |
Data di Pubblicazione | 2020-04-25 |
Valutazione | 2.14/5 Totale 7 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |