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. 扩展基本信息
| 名称 | |
| 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"
}
} | |