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.”。

扩展截图

screenshot

下载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 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"
    ]
}