TryBot Re-Runner

This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.

Qu'est-ce que TryBot Re-Runner ?

TryBot Re-Runner est une extension Chrome développée par ajose, et sa fonction principale est "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TryBot Re-Runner

Téléchargez les fichiers d'extension TryBot Re-Runner 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

                        Love abusing trybots? Hate selecting each failed and flaky bot by hand when you want to run them again? 

This extension adds an extra button, "Select Failures", to the "Choose trybots" pop-up window in Rietveld. When you click "Select Failures", the extension will automatically check the boxes for all trybots that have 1) failed or been flaky at least once, and 2) never passed. Then just click "Update" as normal.                    

Informations de Base sur l'Extension

Nom TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
URL Officiel https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn
Description This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.
Taille du Fichier 298 KB
Nombre d'Installations 61
Version Actuelle 1.3
Dernière Mise à Jour 2015-11-04
Date de Publication 2015-11-04
Développeur ajose
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TryBot Re-Runner",
    "description": "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.",
    "version": "1.3",
    "icons": {
        "128": "facepalm.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codereview.chromium.org\/*",
                "*:\/\/chromiumcodereview.appspot.com\/*"
            ],
            "exclude_globs": [
                "*all*",
                "*mine*",
                "*starred*",
                "*search*",
                "*settings*"
            ],
            "js": [
                "rerunner.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}