GitHub Colorful Contributions
💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.
Τι είναι το GitHub Colorful Contributions;
Το GitHub Colorful Contributions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον g1eny0ung, και η κύρια λειτουργία του είναι "💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Colorful Contributions
Λήψη αρχείων επέκτασης GitHub Colorful Contributions σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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" } } |