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.
Was ist TryBot Re-Runner?
TryBot Re-Runner ist eine Chrome-Erweiterung, die von ajose entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".
Erweiterungsscreenshots
TryBot Re-Runner-Erweiterungs-CRX-Datei herunterladen
Laden Sie TryBot Re-Runner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
Offizielle URL | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
Beschreibung | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
Dateigröße | 298 KB |
Installationsanzahl | 61 |
Aktuelle Version | 1.3 |
Letztes Update | 2015-11-04 |
Veröffentlichungsdatum | 2015-11-04 |
Entwickler | ajose |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |