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" } } |