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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            }
        }
    }
}