YMLink
Helps you navigate between YAML files in your organization's azure devops
什麼是YMLink?
YMLink是由dorkokotek9開發的Chrome擴展程式,該擴展的主要功能是“Helps you navigate between YAML files in your organization's azure devops”。
擴展截圖
下載YMLink擴展crx文件
下載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 |
官方網址 | 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" } } |