Github Stars

See the number of stars earned by a github repository while hovering over its link.

什么是Github Stars?

Github Stars是由SuPythony开发的Chrome扩展程序,该扩展的主要功能是“See the number of stars earned by a github repository while hovering over its link.”。

扩展截图

screenshot
screenshot

下载Github Stars扩展crx文件

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

扩展使用说明

                        Github Stars is an extension that allows you to view the stars earned by a Github repo as well as its languages by hovering over its link on a webpage, without needing to navigate to it. You can also enable prefetching, which allows you to view the stars instantly after hovering over the link.

It's open source and the repository and further details can be found here - https://github.com/SuPythony/Github-Stars-Extension                    

扩展基本信息

名称 Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
官方URL https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
简介 See the number of stars earned by a github repository while hovering over its link.
文件大小 19.28 KB
安装次数 32
当前版本 1.1.0
更新时间 2023-04-24
上架时间 2022-02-03
评分 4.00/5 共2次评分
开发者 SuPythony
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/SuPythony/Github-Stars-Extension
帮助页面URL https://github.com/SuPythony/Github-Stars-Extension/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Stars",
    "description": "See the number of stars earned by a github repository while hovering over its link.",
    "version": "1.1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16.png",
            "32": "\/icons\/32.png",
            "48": "\/icons\/48.png",
            "128": "\/icons\/128.png"
        }
    },
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    }
}