Copy Host

This extension allows you to copy the hostname of the current tab to your clipboard.

¿Qué es Copy Host?

Copy Host es una extensión de Chrome desarrollada por Dheeraj Joshi, y su función principal es "This extension allows you to copy the hostname of the current tab to your clipboard.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy Host

Descarga archivos de extensión Copy Host en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Copy Host Copy Host
ID bnimbjbohdeakocjbldadiggnlmlgmie
URL Oficial https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie
Descripción This extension allows you to copy the hostname of the current tab to your clipboard.
Tamaño del Archivo 6.77 KB
Cantidad de Instalaciones 2,141
Versión Actual 1.1
Última Actualización 2023-12-30
Fecha de Publicación 2017-06-10
Calificación 4.88/5 Total de 8 Calificaciones
Desarrollador Dheeraj Joshi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/djadmin/copy-host
URL de la Página de Ayuda https://github.com/djadmin/copy-host/issues
Idiomas Soportados 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"
            }
        }
    }
}