Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
O que é Copy Host?
Copy Host é uma extensão do Chrome desenvolvida por Dheeraj Joshi, e sua principal característica é "This extension allows you to copy the hostname of the current tab to your clipboard.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy Host
Baixe arquivos de extensão Copy Host no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Copy Host |
ID | bnimbjbohdeakocjbldadiggnlmlgmie |
URL Oficial | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
Descrição | This extension allows you to copy the hostname of the current tab to your clipboard. |
Tamanho do Arquivo | 6.77 KB |
Contagem de Instalações | 2,141 |
Versão Atual | 1.1 |
Última Atualização | 2023-12-30 |
Data de Publicação | 2017-06-10 |
Classificação | 4.88/5 Total de 8 Avaliações |
Desenvolvedor | Dheeraj Joshi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/djadmin/copy-host |
URL da Página de Ajuda | https://github.com/djadmin/copy-host/issues |
Idiomas Suportados | 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" } } } } |