URL in title
Reformats the title of each tab according to its URL.
Cos'è URL in title?
URL in title è un'estensione di Chrome sviluppata da Guillaume Ryder, e la sua funzione principale è "Reformats the title of each tab according to its URL.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione URL in title
Scarica i file di estensione URL in 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
This allows using utilities such as KeePass that auto-fill passwords according to the title of the current window. By default, only the protocol and domain name are appended to the title, but the options page allows full customization. Source code: https://github.com/guilryder/chrome-extensions/tree/main/urlintitle Release notes: v4.0.0: restored suffix preservation logic broken in previous version; migrated to Manifest V3; cleaned up the code v3.0.2: added a mechanism to disable the extension (); added support for pages that delete theelement v3.0.1: added icons
Informazioni di Base sull'Estensione
Nome | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
URL Ufficiale | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Descrizione | Reformats the title of each tab according to its URL. |
Dimensione del File | 14.57 KB |
Conteggio Installazioni | 32,548 |
Versione Corrente | 4.0.0 |
Ultimo Aggiornamento | 2023-12-24 |
Data di Pubblicazione | 2020-03-11 |
Valutazione | 4.63/5 Totale 54 Valutazioni |
Sviluppatore | Guillaume Ryder |
guillaume@ryder.fr | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
URL della Pagina di Aiuto | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "URL in title", "version": "4.0.0", "description": "Reformats the title of each tab according to its URL.", "author": "Guillaume Ryder", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page_hook.js" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "storage" ] } |