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.

Cos'è TryBot Re-Runner?

TryBot Re-Runner è un'estensione di Chrome sviluppata da ajose, e la sua funzione principale è "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TryBot Re-Runner

Scarica i file di estensione TryBot Re-Runner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
URL Ufficiale https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn
Descrizione This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.
Dimensione del File 298 KB
Conteggio Installazioni 61
Versione Corrente 1.3
Ultimo Aggiornamento 2015-11-04
Data di Pubblicazione 2015-11-04
Sviluppatore ajose
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}