Pivotal Linked Github
Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
什么是Pivotal Linked Github?
Pivotal Linked Github是由ivan.tse1开发的Chrome扩展程序,该扩展的主要功能是“Links the pivotal-style syntax messages in Github to Pivotal Tracker stories”。
扩展截图
下载Pivotal Linked Github扩展crx文件
下载Pivotal Linked Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | fabegpijepoajdbndhomfomdiejccbmc |
| 官方URL | https://chromewebstore.google.com/detail/pivotal-linked-github/fabegpijepoajdbndhomfomdiejccbmc |
| 简介 | Links the pivotal-style syntax messages in Github to Pivotal Tracker stories |
| 文件大小 | 13.13 KB |
| 安装次数 | 24 |
| 当前版本 | 0.0.7 |
| 更新时间 | 2015-02-11 |
| 上架时间 | 2015-02-11 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | ivan.tse1 |
| 付费类型 | free |
| 扩展官网 | https://github.com/ivantsepp/pivotal-linked-github |
| 帮助页面URL | https://github.com/ivantsepp/pivotal-linked-github |
| 支持的语言 | 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"
]
}
]
} | |