Copy Host

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

Copy Hostคืออะไร?

Copy Host เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dheeraj Joshi และคุณลักษณะหลักของมันคือ "This extension allows you to copy the hostname of the current tab to your clipboard."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Host

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            }
        }
    }
}