Deploy Spy for Pivotal Tracker
This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to.
什么是Deploy Spy for Pivotal Tracker?
Deploy Spy for Pivotal Tracker是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to.”。
扩展截图
下载Deploy Spy for Pivotal Tracker扩展crx文件
下载Deploy Spy for Pivotal Tracker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds information to Pivotal Tracker stories indicating where they have been deployed based on story IDs and git SHAs in a commits.json file being served on a deployable environment.
扩展基本信息
名称 | Deploy Spy for Pivotal Tracker |
ID | mignagjgmijdedgadjclbmcajbndidkg |
官方URL | https://chromewebstore.google.com/detail/deploy-spy-for-pivotal-tr/mignagjgmijdedgadjclbmcajbndidkg |
简介 | This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to. |
文件大小 | 676 KB |
安装次数 | 14 |
当前版本 | 0.7 |
更新时间 | 2018-09-13 |
上架时间 | 2018-09-13 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/pivotaltracker/tracker_deployment_chrome_extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deploy Spy for Pivotal Tracker", "description": "This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to.", "version": "0.7", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Configure Deploy Spy" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "content_scripts": [ { "js": [ "jquery-2.1.3.min.js", "insert.js" ], "matches": [ "https:\/\/*.pivotaltracker.com\/n\/*" ], "css": [ "deploy_spy.css" ] } ], "permissions": [ "storage", "activeTab" ] } |