Pivotal Linked Github

Links the pivotal-style syntax messages in Github to Pivotal Tracker stories

Pivotal Linked Github là gì?

Pivotal Linked Github là một tiện ích mở rộng Chrome được phát triển bởi ivan.tse1, và tính năng chính của nó là "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pivotal Linked Github

Tải xuống các tệp mở rộng Pivotal Linked Github 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

                        Links the pivotal-style syntax messages in Github to Pivotal Tracker stories. 

For example, if your commit message is "[fixes #123456]", then "#123456" will be linked to the pivotal story. This extension also parses and links the pull request's body.

Github Repo: https://github.com/ivantsepp/pivotal-linked-github
Example PR: https://github.com/ivantsepp/pivotal-linked-github/pull/2

Changelog:
0.0.7 - links now open in new tabs                    

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

Tên Pivotal Linked Github Pivotal Linked Github
ID fabegpijepoajdbndhomfomdiejccbmc
URL Chính Thức https://chromewebstore.google.com/detail/pivotal-linked-github/fabegpijepoajdbndhomfomdiejccbmc
Mô tả Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
Kích Thước Tệp 13.13 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2015-02-11
Ngày Phát Hành 2015-02-11
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển ivan.tse1
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ivantsepp/pivotal-linked-github
URL Trang Trợ Giúp https://github.com/ivantsepp/pivotal-linked-github
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pivotal Linked Github",
    "description": "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories",
    "version": "0.0.7",
    "author": "Ivan Tse",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "pivotal-linked-github.js"
            ]
        }
    ]
}