go get for Github

Add a "go get" button to GitHub.

Qu'est-ce que go get for Github ?

go get for Github est une extension Chrome développée par https://florinpatan.ro, et sa fonction principale est "Add a "go get" button to GitHub.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension go get for Github

Téléchargez les fichiers d'extension go get for Github au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom go get for Github go get for Github
ID ahkfiobnoafagbaaghmbbopfdpdbaidi
URL Officiel https://chromewebstore.google.com/detail/go-get-for-github/ahkfiobnoafagbaaghmbbopfdpdbaidi
Description Add a "go get" button to GitHub.
Taille du Fichier 55.17 KB
Nombre d'Installations 210
Version Actuelle 1.0.5
Dernière Mise à Jour 2016-06-16
Date de Publication 2016-06-16
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://florinpatan.ro
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/dlsniper/ggg
Langues Prises en Charge 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"
            ]
        }
    ]
}