Github Stars

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

Co to jest Github Stars?

Github Stars to rozszerzenie Chrome opracowane przez SuPythony, a jego główną funkcją jest „See the number of stars earned by a github repository while hovering over its link.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Stars

Pobierz pliki rozszerzeń Github Stars w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
Oficjalny URL https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Opis See the number of stars earned by a github repository while hovering over its link.
Rozmiar pliku 19.28 KB
Liczba instalacji 32
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-04-24
Data Publikacji 2022-02-03
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper SuPythony
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/SuPythony/Github-Stars-Extension
Adres URL Strony Pomocy https://github.com/SuPythony/Github-Stars-Extension/issues
Obsługiwane Języki 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"
    }
}