URL in title
Reformats the title of each tab according to its URL.
Was ist URL in title?
URL in title ist eine Chrome-Erweiterung, die von Guillaume Ryder entwickelt wurde, und ihr Hauptmerkmal ist "Reformats the title of each tab according to its URL.".
Erweiterungsscreenshots
URL in title-Erweiterungs-CRX-Datei herunterladen
Laden Sie URL in title-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
Offizielle URL | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Beschreibung | Reformats the title of each tab according to its URL. |
Dateigröße | 14.57 KB |
Installationsanzahl | 32,548 |
Aktuelle Version | 4.0.0 |
Letztes Update | 2023-12-24 |
Veröffentlichungsdatum | 2020-03-11 |
Bewertung | 4.63/5 Insgesamt 54 Bewertungen |
Entwickler | Guillaume Ryder |
guillaume@ryder.fr | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
Hilfeseite URL | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Unterstützte Sprachen | 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" ] } |