YMLink

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

Was ist YMLink?

YMLink ist eine Chrome-Erweiterung, die von dorkokotek9 entwickelt wurde, und ihr Hauptmerkmal ist "Helps you navigate between YAML files in your organization's azure devops".

Erweiterungsscreenshots

screenshot
screenshot

YMLink-Erweiterungs-CRX-Datei herunterladen

Laden Sie YMLink-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YMLink YMLink
ID fohlplgphadlhkaaamjfiipedeagaheb
Offizielle URL https://chromewebstore.google.com/detail/ymlink/fohlplgphadlhkaaamjfiipedeagaheb
Beschreibung Helps you navigate between YAML files in your organization's azure devops
Dateigröße 46.32 KB
Installationsanzahl 42
Aktuelle Version 1.3
Letztes Update 2023-02-11
Veröffentlichungsdatum 2022-10-26
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler dorkokotek9
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.freeprivacypolicy.com/live/17d107d5-b1de-451c-8a1c-b0e5c273beeb
Unterstützte Sprachen 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"
    }
}