TrelloListPrint

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

Was ist TrelloListPrint?

TrelloListPrint ist eine Chrome-Erweiterung, die von Kiwitime Studios entwickelt wurde, und ihr Hauptmerkmal ist "Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

TrelloListPrint-Erweiterungs-CRX-Datei herunterladen

Laden Sie TrelloListPrint-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TrelloListPrint TrelloListPrint
ID fddaifegbjbkmjcgkplbenlgfbobjopn
Offizielle URL https://chrome.google.com/webstore/detail/trellolistprint/fddaifegbjbkmjcgkplbenlgfbobjopn
Beschreibung Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
Dateigröße 5.9 KB
Installationsanzahl 195
Aktuelle Version 0.0.7
Letztes Update 2016-07-16
Veröffentlichungsdatum 2016-07-16
Bewertung 2.40/5 Insgesamt 5 Bewertungen
Entwickler Kiwitime Studios
Zahlungsart free
Unterstützte Sprachen 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
}