YMLink

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

What is YMLink?

YMLink is a Chrome extension developed by dorkokotek9, and its main feature is "Helps you navigate between YAML files in your organization's azure devops".

Extension Screenshots

screenshot
screenshot

Download YMLink Extension CRX File

Download YMLink extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YMLink YMLink
ID fohlplgphadlhkaaamjfiipedeagaheb
Official URL https://chromewebstore.google.com/detail/ymlink/fohlplgphadlhkaaamjfiipedeagaheb
Description Helps you navigate between YAML files in your organization's azure devops
File Size 46.32 KB
Installation Count 42
Current Version 1.3
Last Updated 2023-02-11
Publish Date 2022-10-26
Rating 5.00/5 Total 3 Ratings
Developer dorkokotek9
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.freeprivacypolicy.com/live/17d107d5-b1de-451c-8a1c-b0e5c273beeb
Supported Languages 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"
    }
}