Trello to GitHub Issue

Create GitHub issues from Trello cards

O que é Trello to GitHub Issue?

Trello to GitHub Issue é uma extensão do Chrome desenvolvida por Geoffrey Parker, e sua principal característica é "Create GitHub issues from Trello cards".

Baixar o arquivo CRX da Extensão Trello to GitHub Issue

Baixe arquivos de extensão Trello to GitHub Issue no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
URL Oficial https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Descrição Create GitHub issues from Trello cards
Tamanho do Arquivo 91.01 KB
Contagem de Instalações 75
Versão Atual 1.0.5
Última Atualização 2014-12-12
Data de Publicação 2014-12-12
Classificação 3.00/5 Total de 3 Avaliações
Desenvolvedor Geoffrey Parker
Tipo de Pagamento free
Site da Extensão https://github.com/goodybag/trello-to-github/
URL da Página de Ajuda https://github.com/goodybag/trello-to-github/issues
Idiomas Suportados 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"
    ]
}