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 là gì?

TryBot Re-Runner là một tiện ích mở rộng Chrome được phát triển bởi ajose, và tính năng chính của nó là "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TryBot Re-Runner

Tải xuống các tệp mở rộng TryBot Re-Runner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
URL Chính Thức https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn
Mô tả This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.
Kích Thước Tệp 298 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2015-11-04
Ngày Phát Hành 2015-11-04
Nhà Phát Triển ajose
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}