Jenkins Helper

Monitor Jenkins build state and node state, and provide some convenient services.

Τι είναι το Jenkins Helper;

Το Jenkins Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον LiYing, και η κύρια λειτουργία του είναι "Monitor Jenkins build state and node state, and provide some convenient services.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Jenkins Helper

Λήψη αρχείων επέκτασης Jenkins Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A browser extension that greatly improves the productivity of using Jenkins.

This extension can:

1. Job monitoring: Monitor the build state of Jenkins Job and display a notification when the build is complete. Provide a "monitor" interface to view the build status of the Job of interest at any time. Provides filtering capabilities to filter Jobs based on build results.

2. Build parameter view: It's easy to quickly view build information and build parameters under each Build page and its subpages. A button to view the last/next build parameters is available, and the complete build log can be downloaded directly to the local.

3. Node disk space monitoring: Monitor the amount of the Jenkins node's disk space. If the amount of the remaining space of the node is less than or equal to a given threshold, the notification will alert and provide a monitor page to check the amount of the remaining space of the node at any time.

4. Intelligent search in the address bar: enter jk in the address bar, press the space key and enter intelligent search mode. Enter the job name to quickly match the corresponding Jenkins Job link.

5. Job Statistics: Statistics Job's running node / timed build schedule / whether to disable / whether to allow concurrent information and so on.

6. Parameter stashing and recovery: At the bottom of the Build/Rebuild page, two buttons are generated, Stash Parameters and Recover Parameters. Click Stash Parameters to save the parameter values ​​filled in the current page. Click Recover Parameters to restore the last saved parameter values ​​to the current page.

7. Custom settings: Some personal settings can be made for your unique needs.


Source code:
https://github.com/liying2008/jenkins-helper                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Jenkins Helper Jenkins Helper
ID lkjoiakaidioklnfdejmnoebfbjcbemh
Επίσημο URL https://chromewebstore.google.com/detail/jenkins-helper/lkjoiakaidioklnfdejmnoebfbjcbemh
Περιγραφή Monitor Jenkins build state and node state, and provide some convenient services.
Μέγεθος Αρχείου 2.05 MB
Αριθμός Εγκαταστάσεων 416
Τρέχουσα Έκδοση 2.3.0
Τελευταία Ενημέρωση 2021-08-04
Ημερομηνία Δημοσίευσης 2019-12-11
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής LiYing
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDesc__",
    "author": "LiYing",
    "homepage_url": "https:\/\/github.com\/liying2008\/jenkins-helper",
    "version": "2.3.0",
    "minimum_chrome_version": "55",
    "default_locale": "en",
    "omnibox": {
        "keyword": "jk"
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_extShortName__ - __MSG_extDesc__"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications",
        "tabs",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}