Github Stars

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

O que é Github Stars?

Github Stars é uma extensão do Chrome desenvolvida por SuPythony, e sua principal característica é "See the number of stars earned by a github repository while hovering over its link.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Stars

Baixe arquivos de extensão Github Stars no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
URL Oficial https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Descrição See the number of stars earned by a github repository while hovering over its link.
Tamanho do Arquivo 19.28 KB
Contagem de Instalações 32
Versão Atual 1.1.0
Última Atualização 2023-04-24
Data de Publicação 2022-02-03
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor SuPythony
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/SuPythony/Github-Stars-Extension
URL da Página de Ajuda https://github.com/SuPythony/Github-Stars-Extension/issues
Idiomas Suportados 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"
    }
}