Jenkins Butler

Jenkins Monitor

Jenkins Butler란 무엇입니까?

Jenkins Butler은(는) kb1010101에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Jenkins Monitor"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Jenkins Butler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Feature rich Chrome Extension to show status of Jenkins builds directly on your desktop. 
Supports Jenkins Websocket plugin for real-time notifications.

Features include

- Choose the jobs you want to monitor
- Supports Jenkins Websocket plugin for real-time notification of job failures
- Desktop notification when job fails or succeeds
- Choose notification levels (Job Status Change, Job Error, None) 
- Popup shows build history of each job with links to jump directly to the job in Jenkins
- Color coded job status to quickly see status of jobs (including builds in progress)
- Supports Jenkins API key authentication so do not need to use Jenkins password


**Installation notes**

Once extension is installed, open the options page to configure the plugin to connect to your jenkins server

**Jenkins Url**
The URL of your jenkins server

**Use WebScokets for job updates**
If you have the Jekins Websocket plugin installed on your Jenkins server then you can configure the extension to get real-time updates of the status changes of your jobs. Url of Websocket plugin - https://wiki.jenkins-ci.org/display/JENKINS/Websocket+Plugin

**WebSockets Url**
Url of Jenkins server including Websockets port (only required if using Websockets plugin)

**User Email Address**
Email address to authenticate to Jenkins Server with

**API Key/Password**
API key if user has generated one in Jenkins. This is the recommended way to authenticate to Jenkins now. The API token is available in your personal configuration page. Click your name on the top right corner on every page, then click "Configure" to see your API token.
If you don't want to use an API key, then you can use your Jenkins password here instead.

**Jenkins Polling Frequency**
Set the polling frequency to check status of Jenkins jobs. Enter value in seconds. (Not required if using Websockets plugin)

**Taskbar Notification Level**
Set how often you want to get notified of job status changes
- Job Status Change - Get notified every time the status of a job changes
- Job Failure Only - Get notified only when job fails
- None - Do not receive any desktop notifications

**Duration of notification**
How long will the notification appear on desktop

**Number of builds for each job**
How many builds to display for each job in popup modal.                    

확장 프로그램 기본 정보

이름 Jenkins Butler Jenkins Butler
ID iacnkmnaiiokeinfjihcpnklijcbbcbj
공식 URL https://chromewebstore.google.com/detail/jenkins-butler/iacnkmnaiiokeinfjihcpnklijcbbcbj
설명 Jenkins Monitor
파일 크기 405 KB
설치 횟수 175
현재 버전 0.5
최근 업데이트 2015-07-28
출시 날짜 2015-07-28
평점 4.20/5 총 5 개의 평점
개발자 kb1010101
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "img\/happyJenkins.png",
        "16": "img\/happyJenkins.png",
        "48": "img\/happyJenkins.png"
    },
    "name": "Jenkins Butler",
    "short_name": "Jenkins Butler",
    "description": "Jenkins Monitor",
    "version": "0.5",
    "version_name": "0.5",
    "author": "kb1010101",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "Javascript\/jquery-1.11.2.min.js",
            "Javascript\/reconnecting-websocket.min.js",
            "Javascript\/buildbotRequests.js",
            "Javascript\/buildbotPreferences.js",
            "Javascript\/buildbotJobs.js",
            "Javascript\/buildbotManager.js",
            "Javascript\/background.js"
        ]
    },
    "permissions": [
        "background",
        "notifications",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": "img\/happyJenkins.png",
        "default_title": "Jenkins Butler",
        "default_popup": "popup.html"
    }
}