YMLink

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

YMLink là gì?

YMLink là một tiện ích mở rộng Chrome được phát triển bởi dorkokotek9, và tính năng chính của nó là "Helps you navigate between YAML files in your organization's azure devops".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YMLink

Tải xuống các tệp mở rộng YMLink dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YMLink YMLink
ID fohlplgphadlhkaaamjfiipedeagaheb
URL Chính Thức https://chromewebstore.google.com/detail/ymlink/fohlplgphadlhkaaamjfiipedeagaheb
Mô tả Helps you navigate between YAML files in your organization's azure devops
Kích Thước Tệp 46.32 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-02-11
Ngày Phát Hành 2022-10-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển dorkokotek9
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/17d107d5-b1de-451c-8a1c-b0e5c273beeb
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}