Add URL to page title
Simply adds the URL to the title bar.
Add URL to page titleとは何ですか?
Add URL to page titleはSimon Perryによって開発されたChromeの拡張機能で、その主な機能は「Simply adds the URL to the title bar.」です。
Add URL to page title拡張機能のCRXファイルをダウンロード
Add URL to page title拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This put the URL of any web page you're on into the page title in the format: Original Title |url:[http://www.the-url.com] But why? In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this. However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.
拡張機能の基本情報
名前 | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
公式URL | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
説明 | Simply adds the URL to the title bar. |
ファイルサイズ | 2.79 KB |
インストール数 | 733 |
現在のバージョン | 1.0 |
最終更新日 | 2013-09-17 |
公開日 | 2013-09-17 |
評価 | 4.29/5 合計 7 レビュー |
開発者 | Simon Perry |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add URL to page title", "version": "1.0", "manifest_version": 2, "description": "Simply adds the URL to the title bar.", "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |