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 |
电子邮箱 | [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" } } } } |