Pivotal Linked Github
Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
Cos'è Pivotal Linked Github?
Pivotal Linked Github è un'estensione di Chrome sviluppata da ivan.tse1, e la sua funzione principale è "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pivotal Linked Github
Scarica i file di estensione Pivotal Linked Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Pivotal Linked Github |
ID | fabegpijepoajdbndhomfomdiejccbmc |
URL Ufficiale | https://chromewebstore.google.com/detail/pivotal-linked-github/fabegpijepoajdbndhomfomdiejccbmc |
Descrizione | Links the pivotal-style syntax messages in Github to Pivotal Tracker stories |
Dimensione del File | 13.13 KB |
Conteggio Installazioni | 24 |
Versione Corrente | 0.0.7 |
Ultimo Aggiornamento | 2015-02-11 |
Data di Pubblicazione | 2015-02-11 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | ivan.tse1 |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ivantsepp/pivotal-linked-github |
URL della Pagina di Aiuto | https://github.com/ivantsepp/pivotal-linked-github |
Lingue Supportate | 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" ] } ] } |