TrelloListPrint

Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…

O que é TrelloListPrint?

TrelloListPrint é uma extensão do Chrome desenvolvida por Kiwitime Studios, e sua principal característica é "Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão TrelloListPrint

Baixe arquivos de extensão TrelloListPrint 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

                        Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will include options to print card comment, checklists, and attachments, too.                    

Informações Básicas da Extensão

Nome TrelloListPrint TrelloListPrint
ID fddaifegbjbkmjcgkplbenlgfbobjopn
URL Oficial https://chrome.google.com/webstore/detail/trellolistprint/fddaifegbjbkmjcgkplbenlgfbobjopn
Descrição Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
Tamanho do Arquivo 5.9 KB
Contagem de Instalações 195
Versão Atual 0.0.7
Última Atualização 2016-07-16
Data de Publicação 2016-07-16
Classificação 2.40/5 Total de 5 Avaliações
Desenvolvedor Kiwitime Studios
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrelloListPrint",
    "short_name": "TrelloListPrint",
    "permissions": [
        "*:\/\/trello.com\/*",
        "activeTab",
        "tabs",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "TrelloListPrint128v001.png"
    },
    "version": "0.0.7",
    "manifest_version": 2
}