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 to jest TryBot Re-Runner?
TryBot Re-Runner to rozszerzenie Chrome opracowane przez ajose, a jego główną funkcją jest „This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TryBot Re-Runner
Pobierz pliki rozszerzeń TryBot Re-Runner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
Oficjalny URL | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
Opis | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
Rozmiar pliku | 298 KB |
Liczba instalacji | 61 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2015-11-04 |
Data Publikacji | 2015-11-04 |
Deweloper | ajose |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |