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é es TryBot Re-Runner?
TryBot Re-Runner es una extensión de Chrome desarrollada por ajose, y su función principal es "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TryBot Re-Runner
Descarga archivos de extensión TryBot Re-Runner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
URL Oficial | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
Descripción | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
Tamaño del Archivo | 298 KB |
Cantidad de Instalaciones | 61 |
Versión Actual | 1.3 |
Última Actualización | 2015-11-04 |
Fecha de Publicación | 2015-11-04 |
Desarrollador | ajose |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |