Better Pull Requests

Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…

Что такое Better Pull Requests?

Better Pull Requests - это расширение Chrome, разработанное gordon, и его основная функция - "Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…".

Скачать файл CRX расширения Better Pull Requests

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

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

                        Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is that it allows you to collapse the diff for a file to make the page easier to navigate. It also adds the ability to hide comments in Bitbucket diffs.

More info can be found in the GitHub repo: https://github.com/sproutsocial/github-diff-collapse                    

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

Название Better Pull Requests Better Pull Requests
ID ioaepkkioliomgmnhkgkhcdoofgihhcc
Официальный URL https://chrome.google.com/webstore/detail/better-pull-requests/ioaepkkioliomgmnhkgkhcdoofgihhcc
Описание Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…
Размер файла 83.2 KB
Количество установок 34
Текущая Версия 1.0.0
Последнее Обновление 2017-07-03
Дата публикации 2017-07-03
Рейтинг 5.00/5 Всего 3 оценок
Разработчик gordon
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sproutsocial/github-diff-collapse
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Pull Requests",
    "version": "1.0.0",
    "permissions": [
        "storage",
        ""
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "jquery.livequery.js",
                "helpers.js",
                "github.js",
                "gitlab.js",
                "bitbucket.js"
            ],
            "css": [
                "github.css",
                "gitlab.css",
                "bitbucket.css"
            ]
        }
    ]
}