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" ] } |