GitHub Contribution Color Graph
Change colors of contribution graph in GitHub
什麼是GitHub Contribution Color Graph?
GitHub Contribution Color Graph是由William Belle開發的Chrome擴展程式,該擴展的主要功能是“Change colors of contribution graph in GitHub”。
擴展截圖
下載GitHub Contribution Color Graph擴展crx文件
下載GitHub Contribution Color Graph擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Features: - Colorize contribution graph and legend - Colorize activity overview graph - Colorize activity listing progress bar Options: - GitHub themes - Material Design themes - Random theme Available themes: https://github.com/williambelle/github-contribution-color-graph/blob/master/docs/THEMES.md
擴展基本資訊
名稱 | GitHub Contribution Color Graph |
ID | cfilkjdlgdiclmdfdggjommndffiibbe |
官方網址 | https://chromewebstore.google.com/detail/github-contribution-color/cfilkjdlgdiclmdfdggjommndffiibbe |
簡介 | Change colors of contribution graph in GitHub |
檔案大小 | 12.07 KB |
安裝次數 | 289 |
目前版本 | 1.7.2 |
更新時間 | 2020-10-30 |
上架時間 | 2020-06-29 |
評分 | 5.00/5 共 1 次評分 |
開發者 | William Belle |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/williambelle/github-contribution-color-graph |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Contribution Color Graph", "description": "Change colors of contribution graph in GitHub", "manifest_version": 2, "version": "1.7.2", "content_scripts": [ { "js": [ "js\/contentscript.js" ], "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "storage" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |