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은(는) simplify에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitLab CI Lint - UI Enhancer, enhances your CI Lint experience by making your script code multiline and syntax highlighting"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GitLab CI Lint - UI Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    ]
}