github-find
A plugin for searcing within Github repos.
github-findคืออะไร?
github-find เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aidan Feldman และคุณลักษณะหลักของมันคือ "A plugin for searcing within Github repos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย github-find
ดาวน์โหลดไฟล์ส่วนขยาย github-find ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear. Check out the source here: https://github.com/afeld/github-find
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
คำอธิบาย | A plugin for searcing within Github repos. |
ขนาดไฟล์ | 40.7 KB |
จำนวนการติดตั้ง | 164 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2013-02-18 |
วันที่เผยแพร่ | 2013-02-17 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Aidan Feldman |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/afeld/github-find |
URL หน้าช่วยเหลือ | https://github.com/afeld/github-find/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-find", "version": "1.0.2", "manifest_version": 2, "icons": { "16": "favicon.ico" }, "description": "A plugin for searcing within Github repos.", "homepage_url": "https:\/\/github.com\/afeld\/github-find", "background": { "scripts": [ "jquery-1.9.1.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": "favicon.ico", "default_title": "Click or press Ctrl+Shift+F to search this repository." }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*github.com\/*\/" ], "js": [ "jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js" ] } ], "permissions": [ "tabs" ] } |