GitHub Remarks

a chrome extension that can give github repos your own remarks

O que é GitHub Remarks?

GitHub Remarks é uma extensão do Chrome desenvolvida por hanzichi, e sua principal característica é "a chrome extension that can give github repos your own remarks".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Remarks

Baixe arquivos de extensão GitHub Remarks 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

                        a chrome extension that can give github repos your own remarks                    

Informações Básicas da Extensão

Nome GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
URL Oficial https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
Descrição a chrome extension that can give github repos your own remarks
Tamanho do Arquivo 178 KB
Contagem de Instalações 45
Versão Atual 1.2.1
Última Atualização 2018-05-28
Data de Publicação 2018-05-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor hanzichi
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hanzichi/github-remarks
URL da Página de Ajuda https://github.com/hanzichi/github-remarks/issues
Idiomas Suportados zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Remarks",
    "manifest_version": 2,
    "version": "1.2.1",
    "description": "a chrome extension that can give github repos your own remarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-scripts\/repoDetail.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/list.min.js",
                "content-scripts\/stars.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ]
}