Jenkins Butler

Jenkins Monitor

¿Qué es Jenkins Butler?

Jenkins Butler es una extensión de Chrome desarrollada por kb1010101, y su función principal es "Jenkins Monitor".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Jenkins Butler

Descarga archivos de extensión Jenkins Butler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Jenkins Butler Jenkins Butler
ID iacnkmnaiiokeinfjihcpnklijcbbcbj
URL Oficial https://chromewebstore.google.com/detail/jenkins-butler/iacnkmnaiiokeinfjihcpnklijcbbcbj
Descripción Jenkins Monitor
Tamaño del Archivo 405 KB
Cantidad de Instalaciones 175
Versión Actual 0.5
Última Actualización 2015-07-28
Fecha de Publicación 2015-07-28
Calificación 4.20/5 Total de 5 Calificaciones
Desarrollador kb1010101
Tipo de Pago free
Idiomas Soportados 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"
    }
}