Pivotal Linked Github

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

What is Pivotal Linked Github?

Pivotal Linked Github is a Chrome extension developed by ivan.tse1, and its main feature is "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories".

Extension Screenshots

screenshot
screenshot

Download Pivotal Linked Github Extension CRX File

Download Pivotal Linked Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Pivotal Linked Github Pivotal Linked Github
ID fabegpijepoajdbndhomfomdiejccbmc
Official URL https://chromewebstore.google.com/detail/pivotal-linked-github/fabegpijepoajdbndhomfomdiejccbmc
Description Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
File Size 13.13 KB
Installation Count 24
Current Version 0.0.7
Last Updated 2015-02-11
Publish Date 2015-02-11
Rating 5.00/5 Total 3 Ratings
Developer ivan.tse1
Payment Type free
Extension Website https://github.com/ivantsepp/pivotal-linked-github
Help Page URL https://github.com/ivantsepp/pivotal-linked-github
Supported Languages 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"
            ]
        }
    ]
}