Copy Host

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

什麼是Copy Host?

Copy Host是由Dheeraj Joshi開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to copy the hostname of the current tab to your clipboard.”。

擴展截圖

screenshot
screenshot

下載Copy Host擴展crx文件

下載Copy Host擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            }
        }
    }
}