Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Что такое Github Expand Diff?
Github Expand Diff - это расширение Chrome, разработанное Michael Ridgway, и его основная функция - "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Снимки экрана расширения
Скачать файл CRX расширения Github Expand Diff
Скачайте файлы расширений Github Expand Diff в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | imakbajpbolcgnkfhhlhipbjppfomlij |
| Официальный URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
| Описание | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
| Размер файла | 5.63 KB |
| Количество установок | 121 |
| Текущая Версия | 0.0.1.6 |
| Последнее Обновление | 2014-06-18 |
| Дата публикации | 2014-06-18 |
| Рейтинг | 3.86/5 Всего 7 оценок |
| Разработчик | Michael Ridgway |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/mridgway/github-expand-diff |
| URL страницы помощи | https://github.com/mridgway/github-expand-diff/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Expand Diff",
"version": "0.0.1.6",
"description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/*.com\/*\/*\/pull\/*",
"https:\/\/*.com\/*\/*\/commit\/*",
"https:\/\/*.com\/*\/*\/compare\/*"
],
"include_globs": [
"https:\/\/github.com\/*",
"https:\/\/github.*.com\/*",
"https:\/\/git.*.com\/*"
],
"run_at": "document_end",
"js": [
"github-expand-diff.user.js"
]
}
]
} | |