GitRec

A recommender system for GitHub repositories based on Gorse

GitRec क्या है?

GitRec zhangzhenghaocn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A recommender system for GitHub repositories based on Gorse"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GitRec एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}