go get for Github
Add a "go get" button to GitHub.
Cos'è go get for Github?
go get for Github è un'estensione di Chrome sviluppata da https://florinpatan.ro, e la sua funzione principale è "Add a "go get" button to GitHub.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione go get for Github
Scarica i file di estensione go get for Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | go get for Github |
ID | ahkfiobnoafagbaaghmbbopfdpdbaidi |
URL Ufficiale | https://chromewebstore.google.com/detail/go-get-for-github/ahkfiobnoafagbaaghmbbopfdpdbaidi |
Descrizione | Add a "go get" button to GitHub. |
Dimensione del File | 55.17 KB |
Conteggio Installazioni | 210 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2016-06-16 |
Data di Pubblicazione | 2016-06-16 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://florinpatan.ro |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/dlsniper/ggg |
Lingue Supportate | 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" ] } ] } |