Inspect and view changes in Github stats for NPM 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": "Github stats for NPM",
"version": "0.0.0.4",
"description": "A Chrome extension that adds a dialog with github stats to the package's npmjs page",
"author": "itaydafna",
"manifest_version": 2,
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"page_action": {
"default_icon": "icons/icon128.png",
"default_title": "title",
"default_popup": "index.html"
},
"permissions": [
"declarativeContent",
"tabs",
"webNavigation"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"https://*.npmjs.com/*"
],
"all_frames": true
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"panel.html",
"content.js"
]
}