GH Real Names

Replace IDs with real names on Github

Cos'è GH Real Names?

GH Real Names è un'estensione di Chrome sviluppata da Perfect Things, e la sua funzione principale è "Replace IDs with real names on Github".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GH Real Names

Scarica i file di estensione GH Real Names in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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"!                    

Informazioni di Base sull'Estensione

Nome GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
URL Ufficiale https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
Descrizione Replace IDs with real names on Github
Dimensione del File 23.35 KB
Conteggio Installazioni 86
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-03-14
Data di Pubblicazione 2021-08-19
Sviluppatore Perfect Things
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tborychowski/gh-real-names
URL della Pagina di Aiuto https://github.com/tborychowski/gh-real-names/issues
Lingue Supportate 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"
    }
}