Trello to GitHub Issue
Create GitHub issues from Trello cards
Что такое Trello to GitHub Issue?
Trello to GitHub Issue - это расширение Chrome, разработанное Geoffrey Parker, и его основная функция - "Create GitHub issues from Trello cards".
Скачать файл CRX расширения Trello to GitHub Issue
Скачайте файлы расширений Trello to GitHub Issue в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is for those people who use Trello for project management and GitHub for issue tracking. It inserts a "GitHub Issue" button into the actions list on Trello cards which automatically creates a GitHub issue from the card and cross-links the two together.
This is an open source project. https://github.com/goodybag/trello-to-github/ Основная информация о расширении
| Название | |
| ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
| Официальный URL | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
| Описание | Create GitHub issues from Trello cards |
| Размер файла | 91.01 KB |
| Количество установок | 75 |
| Текущая Версия | 1.0.5 |
| Последнее Обновление | 2014-12-12 |
| Дата публикации | 2014-12-12 |
| Рейтинг | 3.00/5 Всего 3 оценок |
| Разработчик | Geoffrey Parker |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/goodybag/trello-to-github/ |
| URL страницы помощи | https://github.com/goodybag/trello-to-github/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Trello to GitHub Issue",
"version": "1.0.5",
"description": "Create GitHub issues from Trello cards",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/card\/*",
"https:\/\/trello.com\/board\/*",
"https:\/\/trello.com\/c\/*",
"https:\/\/trello.com\/b\/*"
],
"js": [
"lib\/jquery-1.9.1.js",
"lib\/bootstrap-typeahead.js",
"lib\/trello.js",
"main.js"
],
"css": [
"css\/bootstrap.css"
]
}
],
"permissions": [
"https:\/\/api.github.com\/",
"https:\/\/api.trello.com\/",
"https:\/\/github-oauth-proxy.jit.su\/"
],
"web_accessible_resources": [
"popover.html"
]
} | |