GitHub Contribution Color Graph
Change colors of contribution graph in GitHub
Τι είναι το GitHub Contribution Color Graph;
Το GitHub Contribution Color Graph είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον William Belle, και η κύρια λειτουργία του είναι "Change colors of contribution graph in GitHub".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Contribution Color Graph
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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" } } |