Github Star Count

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

什么是Github Star Count?

Github Star Count是由progzhangchao开发的Chrome扩展程序,该扩展的主要功能是“When you view an awesome page, add star count to github repository links.”。

扩展截图

screenshot
screenshot

下载Github Star Count扩展crx文件

下载Github Star Count扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
官方URL https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
简介 When you view an awesome page, add star count to github repository links.
文件大小 7.4 KB
安装次数 210
当前版本 1.0
更新时间 2021-03-10
上架时间 2021-03-09
评分 5.00/5 共1次评分
开发者 progzhangchao
电子邮箱 [email protected]
付费类型 in_app
支持的语言 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"
        ]
    }
}