GitHub Colorful Contributions

💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.

GitHub Colorful Contributions란 무엇입니까?

GitHub Colorful Contributions은(는) g1eny0ung에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "💚💙💜💛❤️ Customize the colors of the GitHub contributions graph."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GitHub Colorful Contributions 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        GitHub Colorful Contributions (GCC) can change the color of the contributions graph on your GitHub profile page.

GCC can also be used with https://github.com/jasonlong/isometric-contributions.

Once installed, you can click on the extension icon to select the color you like.

Extension homepage: https://github.com/g1eny0ung/github-colorful-contributions-graph

If you have any questions, feel free to submit an issue at https://github.com/g1eny0ung/github-colorful-contributions-graph/issues or mail me ([email protected]).                    

확장 프로그램 기본 정보

이름 GitHub Colorful Contributions GitHub Colorful Contributions
ID nmlemiahmhcclpifhmpbjbikdgbndief
공식 URL https://chromewebstore.google.com/detail/github-colorful-contribut/nmlemiahmhcclpifhmpbjbikdgbndief
설명 💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.
파일 크기 121 KB
설치 횟수 163
현재 버전 4.0.3
최근 업데이트 2023-04-04
출시 날짜 2020-07-04
평점 4.60/5 총 5 개의 평점
개발자 g1eny0ung
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/g1eny0ung/github-colorful-contributions-graph
도움말 페이지 URL https://github.com/g1eny0ung/github-colorful-contributions-graph/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Colorful Contributions",
    "description": "\ud83d\udc9a\ud83d\udc99\ud83d\udc9c\ud83d\udc9b\u2764\ufe0f Customize the colors of the GitHub contributions graph.",
    "version": "4.0.3",
    "manifest_version": 3,
    "permissions": [
        "declarativeContent",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/16x16.png",
            "32": "images\/32x32.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/obelisk.min.js",
                "js\/content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    }
}