GitHub Color Changer
This extension changes the GitHub Icon Color Randomly
Что такое GitHub Color Changer?
GitHub Color Changer - это расширение Chrome, разработанное https://timothycarambat.com, и его основная функция - "This extension changes the GitHub Icon Color Randomly".
Скачать файл CRX расширения GitHub Color Changer
Скачайте файлы расширений GitHub Color Changer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This simple extension changes the current styling of the github header Octocat. It will change the color from white to any color in the rainbow, which looks great against the black header bar that is not very lively. A small, but warm change for the career developer.
Основная информация о расширении
Название | GitHub Color Changer |
ID | hldkfdccdlbahaaipmopnajgpggfdmkb |
Официальный URL | https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb |
Описание | This extension changes the GitHub Icon Color Randomly |
Размер файла | 49.82 KB |
Количество установок | 44 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2017-04-02 |
Дата публикации | 2017-04-01 |
Разработчик | https://timothycarambat.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Color Changer", "version": "0.0.1", "manifest_version": 2, "description": "This extension changes the GitHub Icon Color Randomly", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "tabs", "*:\/\/github.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "js\/jquery.min.js", "js\/color_change.js" ] } ] } |