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 |
官方網址 | 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" ] } |