VSO PR Auto Complete

Click the vso complete pull request button when all are status options are green.

Что такое VSO PR Auto Complete?

VSO PR Auto Complete - это расширение Chrome, разработанное andrew.moldovan1991, и его основная функция - "Click the vso complete pull request button when all are status options are green.".

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

screenshot

Скачать файл CRX расширения VSO PR Auto Complete

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

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

                        For everyone working with VSO and having to babysit your pull requests as you wait for builds to finish, this chrome extension is for you!

Because builds take a fairly long time (in the order of minutes) it is highly likely that on a team of moderate size, as you wait for your build to finish, somebody else will check into the base branch. This will kick off a new merge evaluation, which kicks off another build. And so on.

Having to sit and wait for this to go through and to remember to come back right after the build finished so that you can check in, is a real pain and wasted time.

The extension will click the re-evaluate button for you, wait until builds are finished, click the complete pull request button and will alert you to any problems.                    

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

Название VSO PR Auto Complete VSO PR Auto Complete
ID gdhnhnnblbccnkleobllhgmbolbjpeca
Официальный URL https://chromewebstore.google.com/detail/vso-pr-auto-complete/gdhnhnnblbccnkleobllhgmbolbjpeca
Описание Click the vso complete pull request button when all are status options are green.
Размер файла 142 KB
Количество установок 34
Текущая Версия 1.6
Последнее Обновление 2015-11-18
Дата публикации 2015-11-18
Рейтинг 4.00/5 Всего 3 оценок
Разработчик andrew.moldovan1991
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VSO PR Auto Complete",
    "description": "Click the vso complete pull request button when all are status options are green.",
    "version": "1.6",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.visualstudio.com\/*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "https:\/\/ajax.googleapis.com\/",
        "declarativeContent"
    ]
}