GitLab CI Lint - UI Enhancer

GitLab CI Lint - UI Enhancer, enhances your CI Lint experience by making your script code multiline and syntax highlighting

Τι είναι το GitLab CI Lint - UI Enhancer;

Το GitLab CI Lint - UI Enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον simplify, και η κύρια λειτουργία του είναι "GitLab CI Lint - UI Enhancer, enhances your CI Lint experience by making your script code multiline and syntax highlighting".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GitLab CI Lint - UI Enhancer

Λήψη αρχείων επέκτασης GitLab CI Lint - UI Enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        GitLab CI Lint - UI Enhancer attempts to improve user experience of using CI Lint tool available on gitlab.com

The CI Lint on gitlab.com as of today displays the CI pipeline job script code of each script in a single line, no matter the length of script and that too with no syntax highlighting, which is pain while trying to debug/review your CI pipeline code. This behaviour becomes even more painful if your .gitlab-ci.yml uses a lot of include statements.

Well, no more ...!

This extension makes the displayed scripts multiline by replacing the '\n' string with new line character and performs the syntax highlighting, which vastly improves readability of your GitLab CI pipeline scripts.

User can simply click on the extension icon or use keyboard shortcut 'Ctrl+Shift+W' to execute the behaviour.

Simply reload the page to go back to original view.                    

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

Όνομα GitLab CI Lint - UI Enhancer GitLab CI Lint - UI Enhancer
ID igdnlmbjfnandalpoknbcjaeefkdmeah
Επίσημο URL https://chromewebstore.google.com/detail/gitlab-ci-lint-ui-enhance/igdnlmbjfnandalpoknbcjaeefkdmeah
Περιγραφή GitLab CI Lint - UI Enhancer, enhances your CI Lint experience by making your script code multiline and syntax highlighting
Μέγεθος Αρχείου 25.49 KB
Αριθμός Εγκαταστάσεων 49
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2020-09-07
Ημερομηνία Δημοσίευσης 2020-09-07
Προγραμματιστής simplify
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab CI Lint - UI Enhancer",
    "version": "0.0.1",
    "description": "GitLab CI Lint - UI Enhancer, enhances your CI Lint experience by making your script code multiline and syntax highlighting",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/ci.png",
        "32": "icons\/ci.png",
        "48": "icons\/ci.png",
        "128": "icons\/ci.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/ci.png",
            "32": "icons\/ci.png",
            "48": "icons\/ci.png",
            "128": "icons\/ci.png"
        },
        "default_title": "GItLab CI Lint - UI Enhancer"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+W",
                "mac": "MacCtrl+Shift+W"
            },
            "description": "Apply"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gitlab.com\/*ci*lint*"
            ],
            "css": [
                "lib\/prism\/prism.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "lib\/prism\/prism.js"
    ]
}