GitStats

Displays brief GitHub stats for a user.

GitStats란 무엇입니까?

GitStats은(는) Akash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays brief GitHub stats for a user."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GitStats 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Introducing a powerful and convenient tool for all GitHub users, a chrome extension that allows you to easily view a user's GitHub statistics right from their profile or by searching for their username. With this extension, you can quickly access valuable insights about a user's GitHub activity, making it an essential tool for developers and enthusiasts.

Some of the features of GITSTATS include:

-  Seamless integration: Access GITSTATS with a single click from any user's GitHub profile or by searching for a specific user.
-  Comprehensive statistics: Get detailed information about a user's GitHub activity, including their repository count, total stars received etc.
-  Contribution insights: Gain insights into a user's contributions, such as the number of commits, pull requests, and issues they have made
-  User-friendly interface: Enjoy a clean and intuitive interface that presents the information in a visually appealing and easy-to-understand format

GITSTATS is a free and open-source extension that is available to download from the Chrome Web Store.

Here are some additional benefits of using GITSTATS:

-  Save time by quickly accessing the information you need about a user's GitHub activity
-  Make better decisions about who to collaborate with or hire
-  Stay up-to-date on the latest developments in your field
-  Learn from other developers by analyzing their code

GITSTATS is a powerful tool that can help you improve your GitHub experience. If you are a developer or enthusiast, I encourage you to try it out.                    

확장 프로그램 기본 정보

이름 GitStats GitStats
ID jlfolgnhjeibddjpcodabefpkggodigc
공식 URL https://chromewebstore.google.com/detail/gitstats/jlfolgnhjeibddjpcodabefpkggodigc
설명 Displays brief GitHub stats for a user.
파일 크기 74.7 KB
설치 횟수 38
현재 버전 1.0.0
최근 업데이트 2023-05-25
출시 날짜 2023-05-25
평점 4.80/5 총 5 개의 평점
개발자 Akash
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/akash-singh8/GitStats
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Akash Singh",
    "name": "GitStats",
    "description": "Displays brief GitHub stats for a user.",
    "version": "1.0.0",
    "action": {
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        },
        "default_title": "GitStats",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}