go get for Github

Add a "go get" button to GitHub.

go get for Github là gì?

go get for Github là một tiện ích mở rộng Chrome được phát triển bởi https://florinpatan.ro, và tính năng chính của nó là "Add a "go get" button to GitHub.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng go get for Github

Tải xuống các tệp mở rộng go get for Github 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

                        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                    

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

Tên go get for Github go get for Github
ID ahkfiobnoafagbaaghmbbopfdpdbaidi
URL Chính Thức https://chromewebstore.google.com/detail/go-get-for-github/ahkfiobnoafagbaaghmbbopfdpdbaidi
Mô tả Add a "go get" button to GitHub.
Kích Thước Tệp 55.17 KB
Số Lần Cài Đặt 210
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2016-06-16
Ngày Phát Hành 2016-06-16
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://florinpatan.ro
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/dlsniper/ggg
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}