URL in title
Reformats the title of each tab according to its URL.
URL in titleคืออะไร?
URL in title เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Guillaume Ryder และคุณลักษณะหลักของมันคือ "Reformats the title of each tab according to its URL."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL in title
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |