Copy Host

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

Copy Host क्या है?

Copy Host Dheeraj Joshi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to copy the hostname of the current tab to your clipboard."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copy Host एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
            }
        }
    }
}