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"
    ]
}