GitHub Colorful Contributions
💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.
¿Qué es GitHub Colorful Contributions?
GitHub Colorful Contributions es una extensión de Chrome desarrollada por g1eny0ung, y su función principal es "💚💙💜💛❤️ Customize the colors of the GitHub contributions graph.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub Colorful Contributions
Descarga archivos de extensión GitHub Colorful Contributions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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]).
Información Básica de la Extensión
Nombre | GitHub Colorful Contributions |
ID | nmlemiahmhcclpifhmpbjbikdgbndief |
URL Oficial | https://chromewebstore.google.com/detail/github-colorful-contribut/nmlemiahmhcclpifhmpbjbikdgbndief |
Descripción | 💚💙💜💛❤️ Customize the colors of the GitHub contributions graph. |
Tamaño del Archivo | 121 KB |
Cantidad de Instalaciones | 163 |
Versión Actual | 4.0.3 |
Última Actualización | 2023-04-04 |
Fecha de Publicación | 2020-07-04 |
Calificación | 4.60/5 Total de 5 Calificaciones |
Desarrollador | g1eny0ung |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/g1eny0ung/github-colorful-contributions-graph |
URL de la Página de Ayuda | https://github.com/g1eny0ung/github-colorful-contributions-graph/issues |
Idiomas Soportados | 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" } } |