Github Stars

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

Cos'è Github Stars?

Github Stars è un'estensione di Chrome sviluppata da SuPythony, e la sua funzione principale è "See the number of stars earned by a github repository while hovering over its link.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Stars

Scarica i file di estensione Github Stars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
URL Ufficiale https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Descrizione See the number of stars earned by a github repository while hovering over its link.
Dimensione del File 19.28 KB
Conteggio Installazioni 32
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-04-24
Data di Pubblicazione 2022-02-03
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore SuPythony
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SuPythony/Github-Stars-Extension
URL della Pagina di Aiuto https://github.com/SuPythony/Github-Stars-Extension/issues
Lingue Supportate 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"
    }
}