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.

What is TryBot Re-Runner?

TryBot Re-Runner is a Chrome extension developed by ajose, and its main feature is "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".

Extension Screenshots

screenshot

Download TryBot Re-Runner Extension CRX File

Download TryBot Re-Runner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
Official URL 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.
File Size 298 KB
Installation Count 61
Current Version 1.3
Last Updated 2015-11-04
Publish Date 2015-11-04
Developer ajose
Payment Type free
Supported Languages 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"
    ]
}