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是由andrew.moldovan1991開發的Chrome擴展程式,該擴展的主要功能是“Click the vso complete pull request button when all are status options are green.”。

擴展截圖

screenshot

下載VSO PR Auto Complete擴展crx文件

下載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
官方網址 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"
    ]
}