Pivotal Linked Github
Links the pivotal-style syntax messages in Github to Pivotal Tracker stories
Что такое Pivotal Linked Github?
Pivotal Linked Github - это расширение Chrome, разработанное ivan.tse1, и его основная функция - "Links the pivotal-style syntax messages in Github to Pivotal Tracker stories".
Снимки экрана расширения
Скачать файл CRX расширения Pivotal Linked Github
Скачайте файлы расширений 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
Основная информация о расширении
Название | Pivotal Linked Github |
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" ] } ] } |