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 هو إضافة Chrome تم تطويرها بواسطة ajose، والميزة الرئيسية لها هي "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TryBot Re-Runner
قم بتنزيل ملفات الامتداد TryBot Re-Runner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان URL الرسمي | 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" ] } |