go get for Github
Add a "go get" button to GitHub.
¿Qué es go get for Github?
go get for Github es una extensión de Chrome desarrollada por https://florinpatan.ro, y su función principal es "Add a "go get" button to GitHub.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión go get for Github
Descarga archivos de extensión go get for Github en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | go get for Github |
ID | ahkfiobnoafagbaaghmbbopfdpdbaidi |
URL Oficial | https://chromewebstore.google.com/detail/go-get-for-github/ahkfiobnoafagbaaghmbbopfdpdbaidi |
Descripción | Add a "go get" button to GitHub. |
Tamaño del Archivo | 55.17 KB |
Cantidad de Instalaciones | 210 |
Versión Actual | 1.0.5 |
Última Actualización | 2016-06-16 |
Fecha de Publicación | 2016-06-16 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://florinpatan.ro |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/dlsniper/ggg |
Idiomas Soportados | 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" ] } ] } |