CoderStats link for Github Coders

Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.

Co to jest CoderStats link for Github Coders?

CoderStats link for Github Coders to rozszerzenie Chrome opracowane przez Ramiro Gómez, a jego główną funkcją jest „Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CoderStats link for Github Coders

Pobierz pliki rozszerzeń CoderStats link for Github Coders 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

                        The CoderStats link for GitHub Chrome extension displays a link to the CoderStats page for the currently displayed user or organization profile page on GitHub.                    

Podstawowe informacje o rozszerzeniu

Nazwa CoderStats link for Github Coders CoderStats link for Github Coders
ID necogepejonacpphmlmcagmbjaogpbng
Oficjalny URL https://chromewebstore.google.com/detail/coderstats-link-for-githu/necogepejonacpphmlmcagmbjaogpbng
Opis Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.
Rozmiar pliku 8.7 KB
Liczba instalacji 807
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2023-05-03
Data Publikacji 2019-06-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Ramiro Gómez
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://coderstats.github.io/
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.0",
    "homepage_url": "http:\/\/coderstats.github.io\/",
    "name": "CoderStats link for Github Coders",
    "description": "Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.",
    "icons": {
        "48": "logo-48x48.png",
        "128": "logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "coderstats.js"
            ],
            "run_at": "document_end"
        }
    ]
}