GH Real Names

Replace IDs with real names on Github

Wat is GH Real Names?

GH Real Names is een Chrome-extensie ontwikkeld door Perfect Things, en de belangrijkste functie is "Replace IDs with real names on Github".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GH Real Names

Download GH Real Names-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
Officiële URL https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
Beschrijving Replace IDs with real names on Github
Bestandsgrootte 23.35 KB
Aantal Installaties 86
Huidige Versie 1.2.0
Laatst Bijgewerkt 2023-03-14
Publicatiedatum 2021-08-19
Ontwikkelaar Perfect Things
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tborychowski/gh-real-names
Help Pagina-URL https://github.com/tborychowski/gh-real-names/issues
Ondersteunde Talen 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"
    }
}