YMLink

Helps you navigate between YAML files in your organization's azure devops

YMLink란 무엇입니까?

YMLink은(는) dorkokotek9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you navigate between YAML files in your organization's azure devops"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YMLink 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Sick of getting lost in your organization's repositories looking for YAML templates?
Use YMLink to easily navigate to your desired YAML file!




All rights reserved to Dor Kokotek.                    

확장 프로그램 기본 정보

이름 YMLink YMLink
ID fohlplgphadlhkaaamjfiipedeagaheb
공식 URL https://chromewebstore.google.com/detail/ymlink/fohlplgphadlhkaaamjfiipedeagaheb
설명 Helps you navigate between YAML files in your organization's azure devops
파일 크기 46.32 KB
설치 횟수 42
현재 버전 1.3
최근 업데이트 2023-02-11
출시 날짜 2022-10-26
평점 5.00/5 총 3 개의 평점
개발자 dorkokotek9
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/17d107d5-b1de-451c-8a1c-b0e5c273beeb
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YMLink",
    "description": "Helps you navigate between YAML files in your organization's azure devops",
    "version": "1.3",
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/ymlbutton.png",
                "\/assets\/icon.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    }
}