GitHub Colorful Contributions
💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.
Co je GitHub Colorful Contributions?
GitHub Colorful Contributions je rozšíření Chrome vyvinuté g1eny0ung, a jeho hlavní funkcí je „💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub Colorful Contributions
Stáhněte si soubory rozšíření GitHub Colorful Contributions ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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]).
Základní Informace o Rozšíření
Název | GitHub Colorful Contributions |
ID | nmlemiahmhcclpifhmpbjbikdgbndief |
Oficiální URL | https://chromewebstore.google.com/detail/github-colorful-contribut/nmlemiahmhcclpifhmpbjbikdgbndief |
Popis | 💚💙💜💛❤️ Customize the colors of the GitHub contributions graph. |
Velikost souboru | 121 KB |
Počet instalací | 163 |
Aktuální Verze | 4.0.3 |
Poslední Aktualizace | 2023-04-04 |
Datum Vydání | 2020-07-04 |
Hodnocení | 4.60/5 Celkem 5 Hodnocení |
Vývojář | g1eny0ung |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/g1eny0ung/github-colorful-contributions-graph |
URL Stránky Nápovědy | https://github.com/g1eny0ung/github-colorful-contributions-graph/issues |
Podporované Jazyky | 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" } } |