GH Real Names

Replace IDs with real names on Github

O que é GH Real Names?

GH Real Names é uma extensão do Chrome desenvolvida por Perfect Things, e sua principal característica é "Replace IDs with real names on Github".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GH Real Names

Baixe arquivos de extensão GH Real Names 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

                        This is a great and fantastic extension. It replaces user IDs, on Github and GH Enterprise, with the actual real names (from user's profiles). So when you're looking at "issues" or "PR"s, you don't have to wonder anymore, who is `u123456`, because you will see his real name is "Angus MacCrockodile"!                    

Informações Básicas da Extensão

Nome GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
URL Oficial https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
Descrição Replace IDs with real names on Github
Tamanho do Arquivo 23.35 KB
Contagem de Instalações 86
Versão Atual 1.2.0
Última Atualização 2023-03-14
Data de Publicação 2021-08-19
Desenvolvedor Perfect Things
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tborychowski/gh-real-names
URL da Página de Ajuda https://github.com/tborychowski/gh-real-names/issues
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.0",
    "name": "GH Real Names",
    "author": "Tom",
    "description": "Replace IDs with real names on Github",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "assets\/icon48.png",
        "96": "assets\/icon96.png"
    }
}