Github Star Count

When you view an awesome page, add star count to github repository links.

O que é Github Star Count?

Github Star Count é uma extensão do Chrome desenvolvida por progzhangchao, e sua principal característica é "When you view an awesome page, add star count to github repository links.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Star Count

Baixe arquivos de extensão Github Star Count 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

                        When you view an awesome page on github site,  such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.                    

Informações Básicas da Extensão

Nome Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
URL Oficial https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
Descrição When you view an awesome page, add star count to github repository links.
Tamanho do Arquivo 7.4 KB
Contagem de Instalações 210
Versão Atual 1.0
Última Atualização 2021-03-10
Data de Publicação 2021-03-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor progzhangchao
Email [email protected]
Tipo de Pagamento in_app
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Star Count",
    "version": "1.0",
    "description": "When you view an awesome page, add star count to github repository links.",
    "author": "progzhangchao",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}