Lock Title
Lock tab title with a given text
Cos'è Lock Title?
Lock Title è un'estensione di Chrome sviluppata da Ken, e la sua funzione principale è "Lock tab title with a given text".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lock Title
Scarica i file di estensione Lock Title 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
Lock tab title with a given string. The locked title doesn't change even if the tab loads the new page. You may find it useful when you want to name tabs by yourself to easily distinguish them, not by the original names. code available here https://github.com/imsut/locktitle
Informazioni di Base sull'Estensione
Nome | Lock Title |
ID | cjkldkjflehlglaenengohmjddgfhlec |
URL Ufficiale | https://chromewebstore.google.com/detail/lock-title/cjkldkjflehlglaenengohmjddgfhlec |
Descrizione | Lock tab title with a given text |
Dimensione del File | 30.45 KB |
Conteggio Installazioni | 166 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2015-12-31 |
Data di Pubblicazione | 2015-12-31 |
Valutazione | 3.60/5 Totale 5 Valutazioni |
Sviluppatore | Ken |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lock Title", "version": "1.0.0", "description": "Lock tab title with a given text", "icons": { "128": "folder_green_locked.png" }, "author": "Ken Kawamoto", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus", "http:\/\/*\/", "https:\/\/*\/" ], "commands": [] } |