go get for Github
Add a "go get" button to GitHub.
go get for Githubคืออะไร?
go get for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://florinpatan.ro และคุณลักษณะหลักของมันคือ "Add a "go get" button to GitHub."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย go get for Github
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } ] } |