Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
Copy Hostとは何ですか?
Copy HostはDheeraj Joshiによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to copy the hostname of the current tab to your clipboard.」です。
拡張機能のスクリーンショット
Copy Host拡張機能のCRXファイルをダウンロード
Copy Host拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome in some cases, prepend http:// to the url when you try to copy. I constantly copy URL from the browser to the shell and it makes me crazy. To avoid that, I built this very basic chrome extension to get only the hostname of the current tab. `Alt + C` can be used as a keyboard shortcut to copy the hostname to your clipboard directly. Github: https://github.com/djadmin/copy-host
拡張機能の基本情報
名前 | Copy Host |
ID | bnimbjbohdeakocjbldadiggnlmlgmie |
公式URL | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
説明 | This extension allows you to copy the hostname of the current tab to your clipboard. |
ファイルサイズ | 6.77 KB |
インストール数 | 2,141 |
現在のバージョン | 1.1 |
最終更新日 | 2023-12-30 |
公開日 | 2017-06-10 |
評価 | 4.88/5 合計 8 レビュー |
開発者 | Dheeraj Joshi |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/djadmin/copy-host |
ヘルプページのURL | https://github.com/djadmin/copy-host/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy Host", "short_name": "copyhost", "description": "This extension allows you to copy the hostname of the current tab to your clipboard.", "version": "1.1", "action": { "default_icon": "img\/icon16.png", "default_title": "Press the button to copy the hostname to the clipboard", "default_popup": "popup.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "activeTab" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+C" } } } } |