GitHub User Languages

See the language usage breakdown of a User or Org right on their GitHub profile page.

Co je GitHub User Languages?

GitHub User Languages je rozšíření Chrome vyvinuté https://freyama.de, a jeho hlavní funkcí je „See the language usage breakdown of a User or Org right on their GitHub profile page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub User Languages

Stáhněte si soubory rozšíření GitHub User Languages ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        GitHub User Languages is a simple extension that renders a pie chart onto a profile page on GitHub.

This pie chart shows a breakdown of the languages used in the public repositories owned by the User or Organisation.

The chart uses GitHub's official language colours for each language, and each segment can be clicked to take you to a list of the repositories owned by the account in each language.

Now you can see what languages a User or Org like to use all in a single place, right on their own profile!                    

Základní Informace o Rozšíření

Název GitHub User Languages GitHub User Languages
ID kikdmnikeponomghepmfipgiijlmfhfl
Oficiální URL https://chromewebstore.google.com/detail/github-user-languages/kikdmnikeponomghepmfipgiijlmfhfl
Popis See the language usage breakdown of a User or Org right on their GitHub profile page.
Velikost souboru 282 KB
Počet instalací 940
Aktuální Verze 1.1.0
Poslední Aktualizace 2023-09-25
Datum Vydání 2019-07-19
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://freyama.de
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/freyamade/github-user-languages
URL Stránky Nápovědy https://github.com/freyamade/github-user-languages/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "images\/github-user-languages.128.png",
        "default_popup": "popup.html"
    },
    "author": "freyamade",
    "content_scripts": [
        {
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "description": "See the language usage breakdown of a User or Org right on their GitHub profile page.",
    "host_permissions": [
        "https:\/\/api.github.com\/",
        "https:\/\/raw.githubusercontent.com\/ozh\/github-colors\/master\/colors.json"
    ],
    "icons": {
        "128": "images\/github-user-languages.128.png"
    },
    "manifest_version": 3,
    "name": "GitHub User Languages",
    "permissions": [
        "storage"
    ],
    "short_name": "github-user-languages",
    "version": "1.1.0"
}