Inspect and view changes in Contributors on Github 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Contributors on Github",
"description": "Show Contributor Stats on Github",
"short_name": "Stats on Github",
"homepage_url": "https://github.com/hzoo/contributors-on-github",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwnKOOu3IkB/A55pdBjEV988NSgMzl8KDo4vZeCz9uuWEyYRLOF63/i8rm4ujFgGm+sfOqIm7u3wNKmgIfEdZwdswWeVC/0/Gra4frixoiQcsykapk7bKFAuFDA06p4jHmmfZZs32bujZaqRDE9Fm4lJ4+otikCmZodHf5oxHu1NdGVSlyiFDpqh7wkg6zhUvOU5vr2bC/Ot5EMAMEtv6oHW5MAflxnLvERc0pK2abVRWvXBM9EbsekSa+d4WwJ2tMDFOe2KDM/FS6+6Jjhm/6SKDc30b+o9Ts8ueDNg8anZ0bOYvzdFtTZYqyQ18zYV252UKDOAgg1rhJkUe9RvNnwIDAQAB",
"version": "25.2.24.0104",
"icons": {
"128": "icon-128.png"
},
"permissions": [
"https://github.com/*/*",
"https://api.github.com/*",
"storage",
"identity"
],
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"manifest_version": 2,
"minimum_chrome_version": "80",
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https://github.com/*/*"
],
"js": [
"query-string.js",
"storage.js",
"vendor/github-injection.js",
"content.js"
]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"applications": {
"gecko": {
"id": "contributors-on-github-test@hzoo.github.com",
"strict_min_version": "74.0"
}
}
}