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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click the vso complete pull request button when all are status options are green."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VSO PR Auto Complete एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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