Github Star Count

When you view an awesome page, add star count to github repository links.

What is Github Star Count?

Github Star Count is a Chrome extension developed by progzhangchao, and its main feature is "When you view an awesome page, add star count to github repository links.".

Extension Screenshots

screenshot
screenshot

Download Github Star Count Extension CRX File

Download Github Star Count extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        When you view an awesome page on github site,  such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.                    

Extension Basic Information

Name Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
Official URL https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
Description When you view an awesome page, add star count to github repository links.
File Size 7.4 KB
Installation Count 210
Current Version 1.0
Last Updated 2021-03-10
Publish Date 2021-03-09
Rating 5.00/5 Total 1 Ratings
Developer progzhangchao
Email [email protected]
Payment Type in_app
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Star Count",
    "version": "1.0",
    "description": "When you view an awesome page, add star count to github repository links.",
    "author": "progzhangchao",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}