YMLink
Helps you navigate between YAML files in your organization's azure devops
Vad är YMLink?
YMLink är en Chrome-tillägg utvecklad av dorkokotek9, och dess huvudfunktion är "Helps you navigate between YAML files in your organization's azure devops".
Tilläggsskärmbilder
Ladda ner YMLink-förlängningens CRX-fil
Ladda ner YMLink-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | YMLink |
ID | fohlplgphadlhkaaamjfiipedeagaheb |
Officiell webbadress | https://chromewebstore.google.com/detail/ymlink/fohlplgphadlhkaaamjfiipedeagaheb |
Beskrivning | Helps you navigate between YAML files in your organization's azure devops |
Filstorlek | 46.32 KB |
Antal Installationer | 42 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2023-02-11 |
Publiceringsdatum | 2022-10-26 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | dorkokotek9 |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.freeprivacypolicy.com/live/17d107d5-b1de-451c-8a1c-b0e5c273beeb |
Stödda Språk | 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" } } |