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.”。
擴展截圖
下載go get for Github擴展crx文件
下載go get for Github擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | ahkfiobnoafagbaaghmbbopfdpdbaidi |
官方網址 | 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" ] } ] } |