URL in title
Reformats the title of each tab according to its URL.
URL in title là gì?
URL in title là một tiện ích mở rộng Chrome được phát triển bởi Guillaume Ryder, và tính năng chính của nó là "Reformats the title of each tab according to its URL.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng URL in title
Tải xuống các tệp mở rộng URL in title dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
URL Chính Thức | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Mô tả | Reformats the title of each tab according to its URL. |
Kích Thước Tệp | 14.57 KB |
Số Lần Cài Đặt | 32,548 |
Phiên Bản Hiện Tại | 4.0.0 |
Cập Nhật Lần Cuối | 2023-12-24 |
Ngày Phát Hành | 2020-03-11 |
Đánh Giá | 4.63/5 Tổng số 54 Đánh Giá |
Nhà Phát Triển | Guillaume Ryder |
guillaume@ryder.fr | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
URL Trang Trợ Giúp | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |