Inspect and view changes in GitRec source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"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"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}