GitRec
A recommender system for GitHub repositories based on Gorse
GitRecคืออะไร?
GitRec เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zhangzhenghaocn และคุณลักษณะหลักของมันคือ "A recommender system for GitHub repositories based on Gorse"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitRec
ดาวน์โหลดไฟล์ส่วนขยาย GitRec ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GitRec is a recommender system built for GitHub repositories. 1. Recommends repositories to GitHub users based on starred repositories. 2. Finds similar repositories for popular repositories. This extension and its backend are open-source: https://github.com/gorse-io/gitrec
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitRec |
ID | eihokbaeiebdenibjophfipedicippfl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gitrec/eihokbaeiebdenibjophfipedicippfl |
คำอธิบาย | A recommender system for GitHub repositories based on Gorse |
ขนาดไฟล์ | 181 KB |
จำนวนการติดตั้ง | 269 |
เวอร์ชันปัจจุบัน | 0.6 |
อัปเดตครั้งล่าสุด | 2023-02-26 |
วันที่เผยแพร่ | 2022-04-18 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | zhangzhenghaocn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://gitrec.gorse.io |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitRec", "description": "A recommender system for GitHub repositories based on Gorse", "version": "0.6", "manifest_version": 3, "permissions": [ "scripting", "storage", "webNavigation" ], "host_permissions": [ "https:\/\/gitrec.gorse.io\/*", "*:\/\/github.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "306": "logo.png" } }, "icons": { "306": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "jquery-3.6.1.min.js", "colors.js", "content.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } } |