TrelloListPrint

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

Co to jest TrelloListPrint?

TrelloListPrint to rozszerzenie Chrome opracowane przez Kiwitime Studios, a jego główną funkcją jest „Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TrelloListPrint

Pobierz pliki rozszerzeń TrelloListPrint w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa TrelloListPrint TrelloListPrint
ID fddaifegbjbkmjcgkplbenlgfbobjopn
Oficjalny URL https://chrome.google.com/webstore/detail/trellolistprint/fddaifegbjbkmjcgkplbenlgfbobjopn
Opis Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
Rozmiar pliku 5.9 KB
Liczba instalacji 195
Aktualna Wersja 0.0.7
Ostatnia Aktualizacja 2016-07-16
Data Publikacji 2016-07-16
Ocena 2.40/5 Łącznie 5 Oceny
Deweloper Kiwitime Studios
Typ Płatności free
Obsługiwane Języki 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
}