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.
O que é TryBot Re-Runner?
TryBot Re-Runner é uma extensão do Chrome desenvolvida por ajose, e sua principal característica é "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TryBot Re-Runner
Baixe arquivos de extensão TryBot Re-Runner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
URL Oficial | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
Descrição | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
Tamanho do Arquivo | 298 KB |
Contagem de Instalações | 61 |
Versão Atual | 1.3 |
Última Atualização | 2015-11-04 |
Data de Publicação | 2015-11-04 |
Desenvolvedor | ajose |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |