URL in title
Reformats the title of each tab according to its URL.
Vad är URL in title?
URL in title är en Chrome-tillägg utvecklad av Guillaume Ryder, och dess huvudfunktion är "Reformats the title of each tab according to its URL.".
Tilläggsskärmbilder
Ladda ner URL in title-förlängningens CRX-fil
Ladda ner URL in title-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
Officiell webbadress | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Beskrivning | Reformats the title of each tab according to its URL. |
Filstorlek | 14.57 KB |
Antal Installationer | 32,548 |
Aktuell Version | 4.0.0 |
Senast Uppdaterad | 2023-12-24 |
Publiceringsdatum | 2020-03-11 |
Betyg | 4.63/5 Totalt 54 Betyg |
Utvecklare | Guillaume Ryder |
E-post | guillaume@ryder.fr |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
Hjälpsida URL | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Stödda Språk | 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" ] } |