URL in title
Reformats the title of each tab according to its URL.
¿Qué es URL in title?
URL in title es una extensión de Chrome desarrollada por Guillaume Ryder, y su función principal es "Reformats the title of each tab according to its URL.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión URL in title
Descarga archivos de extensión URL in title en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
URL Oficial | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Descripción | Reformats the title of each tab according to its URL. |
Tamaño del Archivo | 14.57 KB |
Cantidad de Instalaciones | 32,548 |
Versión Actual | 4.0.0 |
Última Actualización | 2023-12-24 |
Fecha de Publicación | 2020-03-11 |
Calificación | 4.63/5 Total de 54 Calificaciones |
Desarrollador | Guillaume Ryder |
Correo electrónico | guillaume@ryder.fr |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
URL de la Página de Ayuda | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Idiomas Soportados | 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" ] } |