GitHub User Languages

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

GitHub User Languages란 무엇입니까?

GitHub User Languages은(는) https://freyama.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See the language usage breakdown of a User or Org right on their GitHub profile page."입니다.

확장 프로그램 스크린샷

screenshot

GitHub User Languages 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 GitHub User Languages GitHub User Languages
ID kikdmnikeponomghepmfipgiijlmfhfl
공식 URL https://chromewebstore.google.com/detail/github-user-languages/kikdmnikeponomghepmfipgiijlmfhfl
설명 See the language usage breakdown of a User or Org right on their GitHub profile page.
파일 크기 282 KB
설치 횟수 940
현재 버전 1.1.0
최근 업데이트 2023-09-25
출시 날짜 2019-07-19
평점 5.00/5 총 3 개의 평점
개발자 https://freyama.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/freyamade/github-user-languages
도움말 페이지 URL https://github.com/freyamade/github-user-languages/issues
지원되는 언어 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"
}