Chromium Buildbot Monitor

Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.

Chromium Buildbot Monitor란 무엇입니까?

Chromium Buildbot Monitor은(는) http://chrome.google.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup."입니다.

확장 프로그램 스크린샷

screenshot

Chromium Buildbot Monitor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        New in version 0.8.3:
- Stop monitoring user try jobs, it's DDoSing the trybots.

New in version 0.8.2:
- Automatically use login credentials from codereview.chromium.org if available.
- Update buildbot status live while the popup is open.

New in version 0.8.1:
- Display active try job status of the signed in user.

New in version 0.8.0:
- Fixed login issues.

New in version 0.7.7:
- Fixed contents of browser action popup (again).
- Sync notification settings.

New in version 0.7.6:
- Fixed contents of browser action popup.

New in version 0.7.5:
- Added desktop notifications on tree status changes. You can enable/disable these from the extension's options page (right click on the browser action icon and choose Options). 

Source can be found here:
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/buildbot/                    

확장 프로그램 기본 정보

이름 Chromium Buildbot Monitor Chromium Buildbot Monitor
ID oafaagfgbdpldilgjjfjocjglfbolmac
공식 URL https://chrome.google.com/webstore/detail/chromium-buildbot-monitor/oafaagfgbdpldilgjjfjocjglfbolmac
설명 Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.
파일 크기 31 KB
설치 횟수 304
현재 버전 0.9.0
최근 업데이트 2014-08-13
출시 날짜 2014-08-13
평점 3.86/5 총 7 개의 평점
개발자 http://chrome.google.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chromium Buildbot Monitor",
    "version": "0.9.0",
    "description": "Displays the status of the Chromium buildbot in the toolbar.  Click to see more detailed status in a popup.",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "utils.js",
            "prefs.js",
            "try_status.js",
            "active_issues.js",
            "bg.js"
        ]
    },
    "permissions": [
        "notifications",
        "storage",
        "http:\/\/build.chromium.org\/",
        "http:\/\/chromium-status.appspot.com\/",
        "https:\/\/codereview.chromium.org\/"
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "chromium.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "manifest_version": 2
}