Parents for Azure Devops Boards
Fetch and display the parent of each item and also the remainings in Azure Devops Boards
什么是Parents for Azure Devops Boards?
Parents for Azure Devops Boards是由jdmry开发的Chrome扩展程序,该扩展的主要功能是“Fetch and display the parent of each item and also the remainings in Azure Devops Boards”。
扩展截图
下载Parents for Azure Devops Boards扩展crx文件
下载Parents for Azure Devops Boards扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pre-requisites - In your board display settings, choose to display the ID of the work item on the card - Use the new azure devops url pattern (eg. https://dev.azure.com/org/....) How to use - Refresh the board page and click on the extension icon - If anything goes wrong at any time or it doesn't work, please just refresh the page and re-click on the extension icon
扩展基本信息
名称 | Parents for Azure Devops Boards |
ID | fbdbipdlfojffkpopckfpohmaiabglad |
官方URL | https://chromewebstore.google.com/detail/parents-for-azure-devops/fbdbipdlfojffkpopckfpohmaiabglad |
简介 | Fetch and display the parent of each item and also the remainings in Azure Devops Boards |
文件大小 | 466 KB |
安装次数 | 118 |
当前版本 | 1.1.0 |
更新时间 | 2019-10-29 |
上架时间 | 2019-10-29 |
评分 | 4.67/5 共3次评分 |
开发者 | jdmry |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Parents for Azure Devops Boards", "version": "1.1.0", "description": "Fetch and display the parent of each item and also the remainings in Azure Devops Boards", "permissions": [ "https:\/\/dev.azure.com\/", "storage", "activeTab", "webRequest" ], "background": { "scripts": [ "src\/bg\/background.js", "js\/jquery-3.4.1.min.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/dev.azure.com\/*\/*\/_boards\/board\/t\/*", "https:\/\/dev.azure.com\/*\/*\/_sprints\/taskboard\/*" ], "js": [ "src\/inject\/fa.js", "src\/inject\/inject.js", "js\/jquery-3.4.1.min.js" ] } ], "browser_action": { "default_title": "Bring Parents!" }, "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |