go get for Github

Add a "go get" button to GitHub.

go get for Github란 무엇입니까?

go get for Github은(는) https://florinpatan.ro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a "go get" button to GitHub."입니다.

확장 프로그램 스크린샷

screenshot

go get for Github 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add a "go get" button to GitHub that puts command "go get github.com/user/repo" into clipboard.

You can change the flags in the options of the extension.

It is active only for repositories which contain Go as language.

Usage:
- left click copies the `go get` command to clipboard
- CTRL + left click opens godoc.org for the current repository (or CMD on Mac)
- ALT + left click opens goreportcard.com for the current repository
- SHIFT + left click opens Sourcegraph for the current repository

For searching reasons: golang

Github: https://github.com/dlsniper/ggg                    

확장 프로그램 기본 정보

이름 go get for Github go get for Github
ID ahkfiobnoafagbaaghmbbopfdpdbaidi
공식 URL https://chromewebstore.google.com/detail/go-get-for-github/ahkfiobnoafagbaaghmbbopfdpdbaidi
설명 Add a "go get" button to GitHub.
파일 크기 55.17 KB
설치 횟수 210
현재 버전 1.0.5
최근 업데이트 2016-06-16
출시 날짜 2016-06-16
평점 5.00/5 총 2 개의 평점
개발자 https://florinpatan.ro
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/dlsniper/ggg
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "go get for Github",
    "short_name": "go get",
    "version": "1.0.5",
    "manifest_version": 2,
    "description": "Add a \"go get\" button to GitHub.",
    "homepage_url": "https:\/\/github.com\/dlsniper\/ggg",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "src\/ggg\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "clipboardWrite",
        "storage",
        "*:\/\/*.github.com\/*"
    ],
    "web_accessible_resources": [
        "src\/jquery\/jquery-2.2.4.min.js",
        "src\/css\/ggg.css",
        "icons\/icon20.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "src\/jquery\/jquery-2.2.4.min.js",
                "src\/ggg\/ggg.js"
            ]
        }
    ]
}