Github Stars

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

What is Github Stars?

Github Stars is a Chrome extension developed by SuPythony, and its main feature is "See the number of stars earned by a github repository while hovering over its link.".

Extension Screenshots

screenshot
screenshot

Download Github Stars Extension CRX File

Download Github Stars 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

                        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                    

Extension Basic Information

Name Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
Official URL https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Description See the number of stars earned by a github repository while hovering over its link.
File Size 19.28 KB
Installation Count 32
Current Version 1.1.0
Last Updated 2023-04-24
Publish Date 2022-02-03
Rating 4.00/5 Total 2 Ratings
Developer SuPythony
Email [email protected]
Payment Type free
Extension Website https://github.com/SuPythony/Github-Stars-Extension
Help Page URL https://github.com/SuPythony/Github-Stars-Extension/issues
Supported Languages 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"
    }
}