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.
什麼是TryBot Re-Runner?
TryBot Re-Runner是由ajose開發的Chrome擴展程式,該擴展的主要功能是“This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.”。
擴展截圖
下載TryBot Re-Runner擴展crx文件
下載TryBot Re-Runner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | TryBot Re-Runner |
ID | hidamppghiegbmolihgabohmibkmkgpn |
官方網址 | https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn |
簡介 | This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand. |
檔案大小 | 298 KB |
安裝次數 | 61 |
目前版本 | 1.3 |
更新時間 | 2015-11-04 |
上架時間 | 2015-11-04 |
開發者 | ajose |
付費類型 | free |
支援的語言 | 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" ] } |