Jenkins Butler

Jenkins Monitor

Jenkins Butler là gì?

Jenkins Butler là một tiện ích mở rộng Chrome được phát triển bởi kb1010101, và tính năng chính của nó là "Jenkins Monitor".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jenkins Butler

Tải xuống các tệp mở rộng Jenkins Butler 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

                        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.                    

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

Tên Jenkins Butler Jenkins Butler
ID iacnkmnaiiokeinfjihcpnklijcbbcbj
URL Chính Thức https://chromewebstore.google.com/detail/jenkins-butler/iacnkmnaiiokeinfjihcpnklijcbbcbj
Mô tả Jenkins Monitor
Kích Thước Tệp 405 KB
Số Lần Cài Đặt 175
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2015-07-28
Ngày Phát Hành 2015-07-28
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển kb1010101
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}