Copy Host

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

What is Copy Host?

Copy Host is a Chrome extension developed by Dheeraj Joshi, and its main feature is "This extension allows you to copy the hostname of the current tab to your clipboard.".

Extension Screenshots

screenshot
screenshot

Download Copy Host Extension CRX File

Download Copy Host extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Copy Host Copy Host
ID bnimbjbohdeakocjbldadiggnlmlgmie
Official URL https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie
Description This extension allows you to copy the hostname of the current tab to your clipboard.
File Size 6.77 KB
Installation Count 2,141
Current Version 1.1
Last Updated 2023-12-30
Publish Date 2017-06-10
Rating 4.88/5 Total 8 Ratings
Developer Dheeraj Joshi
Email [email protected]
Payment Type free
Extension Website https://github.com/djadmin/copy-host
Help Page URL https://github.com/djadmin/copy-host/issues
Supported Languages 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"
            }
        }
    }
}