Github Diffs

Collapse/expand diff files for easier reviews

Что такое Github Diffs?

Github Diffs - это расширение Chrome, разработанное kamranahmed.se, и его основная функция - "Collapse/expand diff files for easier reviews".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Github Diffs

Скачайте файлы расширений Github Diffs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Collapse/expand diff files for easier reviews

When there is a large number of files in a pull request it becomes difficult to get an overview or to find some specific files with all the files stacked upon each other. This extension allows collapsing and expanding files so that you do not have to pound the innocent scrollbar.

It adds buttons to `Collapse all Diffs` or `Show all Diffs` and makes `file headers clickable` to toggle the diff for some specific file                    

Основная информация о расширении

Название Github Diffs Github Diffs
ID dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Официальный URL https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh
Описание Collapse/expand diff files for easier reviews
Размер файла 12.99 KB
Количество установок 85
Текущая Версия 1.0.3
Последнее Обновление 2017-08-11
Дата публикации 2017-08-11
Разработчик kamranahmed.se
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Diffs",
    "short_name": "github-diffs",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Collapse\/expand diff files for easier reviews",
    "homepage_url": "http:\/\/github.com\/kamranahmedse\/github-diffs",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "GithubDiff.js"
            ]
        }
    ]
}