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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}