Color Diff for Gmail™
This extension colors source code's diff inline of an email.
Что такое Color Diff for Gmail™?
Color Diff for Gmail™ - это расширение Chrome, разработанное Mikhail Nasyrov, и его основная функция - "This extension colors source code's diff inline of an email.".
Снимки экрана расширения
Скачать файл CRX расширения Color Diff for Gmail™
Скачайте файлы расширений Color Diff for Gmail™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Source code: https://github.com/mnasyrov/gcolordiff
Основная информация о расширении
Название | |
ID | ijpjalhclnijdndandfhhdgiiojhckde |
Официальный URL | https://chrome.google.com/webstore/detail/color-diff-for-gmail/ijpjalhclnijdndandfhhdgiiojhckde |
Описание | This extension colors source code's diff inline of an email. |
Размер файла | 6.33 KB |
Количество установок | 107 |
Текущая Версия | 0.1.6 |
Последнее Обновление | 2018-05-25 |
Дата публикации | 2018-05-25 |
Рейтинг | 4.88/5 Всего 8 оценок |
Разработчик | Mikhail Nasyrov |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/mnasyrov/gcolordiff |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Color Diff for Gmail\u2122", "version": "0.1.6", "manifest_version": 2, "description": "This extension colors source code's diff inline of an email.", "permissions": [ "https:\/\/mail.google.com\/*" ], "icons": { "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "gcolordiff.js" ], "css": [ "gcolordiff.css" ], "run-at": "document_end" } ] } |