TrelloListPrint

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

Cos'è TrelloListPrint?

TrelloListPrint è un'estensione di Chrome sviluppata da Kiwitime Studios, e la sua funzione principale è "Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TrelloListPrint

Scarica i file di estensione TrelloListPrint in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TrelloListPrint TrelloListPrint
ID fddaifegbjbkmjcgkplbenlgfbobjopn
URL Ufficiale https://chrome.google.com/webstore/detail/trellolistprint/fddaifegbjbkmjcgkplbenlgfbobjopn
Descrizione Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
Dimensione del File 5.9 KB
Conteggio Installazioni 195
Versione Corrente 0.0.7
Ultimo Aggiornamento 2016-07-16
Data di Pubblicazione 2016-07-16
Valutazione 2.40/5 Totale 5 Valutazioni
Sviluppatore Kiwitime Studios
Tipo di Pagamento free
Lingue Supportate 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
}