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 là gì?

Deploy Spy for Pivotal Tracker là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Deploy Spy for Pivotal Tracker

Tải xuống các tệp mở rộng Deploy Spy for Pivotal Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Deploy Spy for Pivotal Tracker Deploy Spy for Pivotal Tracker
ID mignagjgmijdedgadjclbmcajbndidkg
URL Chính Thức https://chromewebstore.google.com/detail/deploy-spy-for-pivotal-tr/mignagjgmijdedgadjclbmcajbndidkg
Mô tả This extension adds data to Pivotal Tracker stories showing what environments they have been deployed to.
Kích Thước Tệp 676 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2018-09-13
Ngày Phát Hành 2018-09-13
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pivotaltracker/tracker_deployment_chrome_extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}