Trello to GitHub Issue
Create GitHub issues from Trello cards
Hvad er Trello to GitHub Issue?
Trello to GitHub Issue er en Chrome-udvidelse udviklet af Geoffrey Parker, og dens hovedfunktion er "Create GitHub issues from Trello cards".
Download Trello to GitHub Issue-udvidelses-CRX-fil
Download Trello to GitHub Issue-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/ Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
| Officiel URL | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
| Beskrivelse | Create GitHub issues from Trello cards |
| Filstørrelse | 91.01 KB |
| Antal Installationer | 75 |
| Nuværende Version | 1.0.5 |
| Senest Opdateret | 2014-12-12 |
| Udgivelsesdato | 2014-12-12 |
| Bedømmelse | 3.00/5 Samlet 3 Bedømmelser |
| Udvikler | Geoffrey Parker |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/goodybag/trello-to-github/ |
| Hjælpeside-URL | https://github.com/goodybag/trello-to-github/issues |
| Understøttede Sprog | 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"
]
} | |