YMLink
Helps you navigate between YAML files in your organization's azure devops
ما هو YMLink؟
YMLink هو إضافة Chrome تم تطويرها بواسطة dorkokotek9، والميزة الرئيسية لها هي "Helps you navigate between YAML files in your organization's azure devops".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YMLink
قم بتنزيل ملفات الامتداد YMLink بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة سياسة الخصوصية | 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" } } |