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.
Co je TryBot Re-Runner?
TryBot Re-Runner je rozšíření Chrome vyvinuté ajose, a jeho hlavní funkcí je „This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření TryBot Re-Runner
Stáhněte si soubory rozšíření TryBot Re-Runner ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
Oficiální URL | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
Popis | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
Velikost souboru | 298 KB |
Počet instalací | 61 |
Aktuální Verze | 1.3 |
Poslední Aktualizace | 2015-11-04 |
Datum Vydání | 2015-11-04 |
Vývojář | ajose |
Typ Platby | free |
Podporované Jazyky | 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" ] } |