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 |
Eメール | 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" ] } |