Extension for viewing github stars next to github links
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 Star Viewer",
"description": "Extension for viewing github stars next to github links",
"manifest_version": 2,
"version": "1.0",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}