Trello to GitHub Issue
Create GitHub issues from Trello cards
Co to jest Trello to GitHub Issue?
Trello to GitHub Issue to rozszerzenie Chrome opracowane przez Geoffrey Parker, a jego główną funkcją jest „Create GitHub issues from Trello cards”.
Pobierz plik CRX rozszerzenia Trello to GitHub Issue
Pobierz pliki rozszerzeń Trello to GitHub Issue w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
Oficjalny URL | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
Opis | Create GitHub issues from Trello cards |
Rozmiar pliku | 91.01 KB |
Liczba instalacji | 75 |
Aktualna Wersja | 1.0.5 |
Ostatnia Aktualizacja | 2014-12-12 |
Data Publikacji | 2014-12-12 |
Ocena | 3.00/5 Łącznie 3 Oceny |
Deweloper | Geoffrey Parker |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/goodybag/trello-to-github/ |
Adres URL Strony Pomocy | https://github.com/goodybag/trello-to-github/issues |
Obsługiwane Języki | 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" ] } |