GH Real Names

Replace IDs with real names on Github

Co to jest GH Real Names?

GH Real Names to rozszerzenie Chrome opracowane przez Perfect Things, a jego główną funkcją jest „Replace IDs with real names on Github”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GH Real Names

Pobierz pliki rozszerzeń GH Real Names w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
Oficjalny URL https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
Opis Replace IDs with real names on Github
Rozmiar pliku 23.35 KB
Liczba instalacji 86
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-03-14
Data Publikacji 2021-08-19
Deweloper Perfect Things
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tborychowski/gh-real-names
Adres URL Strony Pomocy https://github.com/tborychowski/gh-real-names/issues
Obsługiwane Języki 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"
    }
}