Copy Host

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

Co je Copy Host?

Copy Host je rozšíření Chrome vyvinuté Dheeraj Joshi, a jeho hlavní funkcí je „This extension allows you to copy the hostname of the current tab to your clipboard.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Copy Host

Stáhněte si soubory rozšíření Copy Host ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Copy Host Copy Host
ID bnimbjbohdeakocjbldadiggnlmlgmie
Oficiální URL https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie
Popis This extension allows you to copy the hostname of the current tab to your clipboard.
Velikost souboru 6.77 KB
Počet instalací 2,141
Aktuální Verze 1.1
Poslední Aktualizace 2023-12-30
Datum Vydání 2017-06-10
Hodnocení 4.88/5 Celkem 8 Hodnocení
Vývojář Dheeraj Joshi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/djadmin/copy-host
URL Stránky Nápovědy https://github.com/djadmin/copy-host/issues
Podporované Jazyky 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"
            }
        }
    }
}