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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Deploy Spy for Pivotal Tracker
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |