Pivotal Linked Github

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

Was ist Pivotal Linked Github?

Pivotal Linked Github ist eine Chrome-Erweiterung, die von ivan.tse1 entwickelt wurde, und ihr Hauptmerkmal ist "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories".

Erweiterungsscreenshots

screenshot
screenshot

Pivotal Linked Github-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pivotal Linked Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Pivotal Linked Github Pivotal Linked Github
ID fabegpijepoajdbndhomfomdiejccbmc
Offizielle URL https://chromewebstore.google.com/detail/pivotal-linked-github/fabegpijepoajdbndhomfomdiejccbmc
Beschreibung Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
Dateigröße 13.13 KB
Installationsanzahl 24
Aktuelle Version 0.0.7
Letztes Update 2015-02-11
Veröffentlichungsdatum 2015-02-11
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler ivan.tse1
Zahlungsart free
Erweiterungswebsite https://github.com/ivantsepp/pivotal-linked-github
Hilfeseite URL https://github.com/ivantsepp/pivotal-linked-github
Unterstützte Sprachen 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"
            ]
        }
    ]
}