Side-by-side diff view in Github

Adds the option to view diffs side-by-side in Github

Что такое Side-by-side diff view in Github?

Side-by-side diff view in Github - это расширение Chrome, разработанное smike, и его основная функция - "Adds the option to view diffs side-by-side in Github".

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

screenshot

Скачать файл CRX расширения Side-by-side diff view in Github

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

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

                        This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button.

Things that work:
  - Switch between side-by-side and unified diffs
  - Previous comments are shown
  - New comments can be added to any line, but they look funky until you reload.

Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.                    

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

Название Side-by-side diff view in Github Side-by-side diff view in Github
ID ihmhmdmhllhleioijdeoocgoddjckbcd
Официальный URL https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd
Описание Adds the option to view diffs side-by-side in Github
Размер файла 51.96 KB
Количество установок 118
Текущая Версия 1.0.1
Последнее Обновление 2013-03-26
Дата публикации 2013-03-26
Рейтинг 2.40/5 Всего 10 оценок
Разработчик smike
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://github.com/smike/diffhub
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Side-by-side diff view in Github",
    "version": "1.0.1",
    "description": "Adds the option to view diffs side-by-side in Github",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "secrets.js",
            "bg.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.9.1.min.js",
                "content.js"
            ],
            "css": [
                "lib\/diffhub.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}