URL in title
Reformats the title of each tab according to its URL.
什么是URL in title?
URL in title是由Guillaume Ryder开发的Chrome扩展程序,该扩展的主要功能是“Reformats the title of each tab according to its URL.”。
扩展截图
下载URL in title扩展crx文件
下载URL in title扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
官方URL | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
简介 | Reformats the title of each tab according to its URL. |
文件大小 | 14.57 KB |
安装次数 | 32,548 |
当前版本 | 4.0.0 |
更新时间 | 2023-12-24 |
上架时间 | 2020-03-11 |
评分 | 4.63/5 共54次评分 |
开发者 | Guillaume Ryder |
电子邮箱 | guillaume@ryder.fr |
付费类型 | free |
扩展官网 | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
帮助页面URL | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
支持的语言 | 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" ] } |