GitRec
A recommender system for GitHub repositories based on Gorse
What is GitRec?
GitRec is a Chrome extension developed by zhangzhenghaocn, and its main feature is "A recommender system for GitHub repositories based on Gorse".
Extension Screenshots
Download GitRec Extension CRX File
Download GitRec extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GitRec |
ID | eihokbaeiebdenibjophfipedicippfl |
Official URL | https://chromewebstore.google.com/detail/gitrec/eihokbaeiebdenibjophfipedicippfl |
Description | A recommender system for GitHub repositories based on Gorse |
File Size | 181 KB |
Installation Count | 269 |
Current Version | 0.6 |
Last Updated | 2023-02-26 |
Publish Date | 2022-04-18 |
Rating | 5.00/5 Total 1 Ratings |
Developer | zhangzhenghaocn |
[email protected] | |
Payment Type | free |
Extension Website | https://gitrec.gorse.io |
Supported Languages | 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" } } |