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
Eメール [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"
    }
}