GitHub Copy

Lets you click file paths and branch names to copy them to your clipboard.

GitHub Copy란 무엇입니까?

GitHub Copy은(는) coley에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lets you click file paths and branch names to copy them to your clipboard."입니다.

확장 프로그램 스크린샷

screenshot

GitHub Copy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        GitHub Copy allows you to copy file paths and branch names to your clipboard just by clicking on them. Once you click on a file path or branch name, you will be notified that it has been copied to your system clipboard. This extension makes trivial to jump right into the file you need. You don't have to fumble with selecting text or triple clicking the line to highlight it's entirety, nor do you have to press the keyboard shortcut for copy on your system. All you have to do is click and paste.

GitHub Repo: https://github.com/srcoley/github_copy_file_path                    

확장 프로그램 기본 정보

이름 GitHub Copy GitHub Copy
ID eokbemickongbblekfefmfkcihpamnii
공식 URL https://chromewebstore.google.com/detail/github-copy/eokbemickongbblekfefmfkcihpamnii
설명 Lets you click file paths and branch names to copy them to your clipboard.
파일 크기 42.09 KB
설치 횟수 21
현재 버전 0.5
최근 업데이트 2015-07-31
출시 날짜 2015-07-30
평점 5.00/5 총 2 개의 평점
개발자 coley
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Copy",
    "author": "Stephen Coley",
    "version": "0.5",
    "description": "Lets you click file paths and branch names to copy them to your clipboard.",
    "icons": {
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "backgroundPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "http:\/\/github.com\/",
        "https:\/\/github.com\/"
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ]
}