Github Show Avatar

Show avatars in pull requests and issue pages

Github Show Avatar란 무엇입니까?

Github Show Avatar은(는) matthizou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show avatars in pull requests and issue pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Github Show Avatar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will display large avatar pictures in your pull requests and issues list in Github and Github Enterprise. Ideal to quickly identify who created a pull request.
Furthermore, you can overwrite avatars of any user with an image of your choosing, which can bring both fun and better readability in the pages where it is applied. 
It can also display 2 avatars side-to-side, which is really helpful to signal the team that 2 people are taking care of an issue, or have paired together in the code of a pull request.

It supports Github Enterprise on any URL though a really simple process (simply click on the icon when you are in your domain and then on "Activate" button)

Disclaimer : You are going to see your colleagues' faces... even more. ;)                    

확장 프로그램 기본 정보

이름 Github Show Avatar Github Show Avatar
ID ndophfllmdjffpbglbeembkdimmeihfi
공식 URL https://chromewebstore.google.com/detail/github-show-avatar/ndophfllmdjffpbglbeembkdimmeihfi
설명 Show avatars in pull requests and issue pages
파일 크기 32.18 KB
설치 횟수 91
현재 버전 1.0.4
최근 업데이트 2022-05-02
출시 날짜 2020-05-14
평점 5.00/5 총 6 개의 평점
개발자 matthizou
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/matthizou/github-show-avatars
도움말 페이지 URL https://github.com/matthizou/github-show-avatars/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Show Avatar",
    "version": "1.0.4",
    "description": "Show avatars in pull requests and issue pages",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "16": "images\/github-avatars16.png",
        "32": "images\/github-avatars32.png",
        "48": "images\/github-avatars48.png",
        "128": "images\/github-avatars128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "optional_permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/github-avatars16.png",
            "32": "images\/github-avatars32.png",
            "48": "images\/github-avatars48.png",
            "128": "images\/github-avatars128.png"
        },
        "default_popup": "popup.html"
    }
}