Inspect and view changes in Progaholic 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
{
"manifest_version": 2,
"name": "Progaholic",
"version": "1.1resigned1",
"description": "Progaholic is a browser plugin to show how much you contributed today. The plugin counts your contributions (pushes, issues, etc) and shows how active you've been today on every web page you visit. The idea is to encourage you to do more instead of pointless web surfing. Suitable for programmers, technical writers, QA engineers and anyone, who use GitHub, GitLab or BitBucket every day. Contribute more for the greater good! Be a progaholic!",
"author": "Dmitry Savenko",
"homepage_url": "https://github.com/dsavenko/progaholic",
"icons": {
"128": "icon.png"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"x.js",
"bg.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"x.js",
"cs.js"
]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "{116fb9d7-1f00-41dd-9ea2-92855932380a}"
}
}
}