URL in title
Reformats the title of each tab according to its URL.
Qu'est-ce que URL in title ?
URL in title est une extension Chrome développée par Guillaume Ryder, et sa fonction principale est "Reformats the title of each tab according to its URL.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension URL in title
Téléchargez les fichiers d'extension URL in title au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
URL Officiel | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Description | Reformats the title of each tab according to its URL. |
Taille du Fichier | 14.57 KB |
Nombre d'Installations | 32,548 |
Version Actuelle | 4.0.0 |
Dernière Mise à Jour | 2023-12-24 |
Date de Publication | 2020-03-11 |
Évaluation | 4.63/5 Total 54 Évaluations |
Développeur | Guillaume Ryder |
guillaume@ryder.fr | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
URL de la Page d'Aide | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Langues Prises en Charge | 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" ] } |