VSO PR Auto Complete

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

Qu'est-ce que VSO PR Auto Complete ?

VSO PR Auto Complete est une extension Chrome développée par andrew.moldovan1991, et sa fonction principale est "Click the vso complete pull request button when all are status options are green.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension VSO PR Auto Complete

Téléchargez les fichiers d'extension VSO PR Auto Complete au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom VSO PR Auto Complete VSO PR Auto Complete
ID gdhnhnnblbccnkleobllhgmbolbjpeca
URL Officiel https://chromewebstore.google.com/detail/vso-pr-auto-complete/gdhnhnnblbccnkleobllhgmbolbjpeca
Description Click the vso complete pull request button when all are status options are green.
Taille du Fichier 142 KB
Nombre d'Installations 34
Version Actuelle 1.6
Dernière Mise à Jour 2015-11-18
Date de Publication 2015-11-18
Évaluation 4.00/5 Total 3 Évaluations
Développeur andrew.moldovan1991
Type de Paiement free
Langues Prises en Charge 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"
    ]
}