Copy Host

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

Copy Host là gì?

Copy Host là một tiện ích mở rộng Chrome được phát triển bởi Dheeraj Joshi, và tính năng chính của nó là "This extension allows you to copy the hostname of the current tab to your clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy Host

Tải xuống các tệp mở rộng Copy Host dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Host Copy Host
ID bnimbjbohdeakocjbldadiggnlmlgmie
URL Chính Thức https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie
Mô tả This extension allows you to copy the hostname of the current tab to your clipboard.
Kích Thước Tệp 6.77 KB
Số Lần Cài Đặt 2,141
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-12-30
Ngày Phát Hành 2017-06-10
Đánh Giá 4.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Dheeraj Joshi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/djadmin/copy-host
URL Trang Trợ Giúp https://github.com/djadmin/copy-host/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}