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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้านโยบายความเป็นส่วนตัว | 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" } } |