URL in title
Reformats the title of each tab according to its URL.
O que é URL in title?
URL in title é uma extensão do Chrome desenvolvida por Guillaume Ryder, e sua principal característica é "Reformats the title of each tab according to its URL.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão URL in title
Baixe arquivos de extensão URL in title no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
URL Oficial | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Descrição | Reformats the title of each tab according to its URL. |
Tamanho do Arquivo | 14.57 KB |
Contagem de Instalações | 32,548 |
Versão Atual | 4.0.0 |
Última Atualização | 2023-12-24 |
Data de Publicação | 2020-03-11 |
Classificação | 4.63/5 Total de 54 Avaliações |
Desenvolvedor | Guillaume Ryder |
guillaume@ryder.fr | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
URL da Página de Ajuda | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Idiomas Suportados | 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" ] } |