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.

Vad är TryBot Re-Runner?

TryBot Re-Runner är en Chrome-tillägg utvecklad av ajose, och dess huvudfunktion är "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".

Tilläggsskärmbilder

screenshot

Ladda ner TryBot Re-Runner-förlängningens CRX-fil

Ladda ner TryBot Re-Runner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
Officiell webbadress https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn
Beskrivning This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.
Filstorlek 298 KB
Antal Installationer 61
Aktuell Version 1.3
Senast Uppdaterad 2015-11-04
Publiceringsdatum 2015-11-04
Utvecklare ajose
Betalningssätt free
Stödda Språk 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"
    ]
}