Github Stars

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

¿Qué es Github Stars?

Github Stars es una extensión de Chrome desarrollada por SuPythony, y su función principal es "See the number of stars earned by a github repository while hovering over its link.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Github Stars

Descarga archivos de extensión Github Stars en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
URL Oficial https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Descripción See the number of stars earned by a github repository while hovering over its link.
Tamaño del Archivo 19.28 KB
Cantidad de Instalaciones 32
Versión Actual 1.1.0
Última Actualización 2023-04-24
Fecha de Publicación 2022-02-03
Calificación 4.00/5 Total de 2 Calificaciones
Desarrollador SuPythony
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/SuPythony/Github-Stars-Extension
URL de la Página de Ayuda https://github.com/SuPythony/Github-Stars-Extension/issues
Idiomas Soportados 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"
    }
}