TrelloListPrint

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

ما هو TrelloListPrint؟

TrelloListPrint هو إضافة Chrome تم تطويرها بواسطة Kiwitime Studios، والميزة الرئيسية لها هي "Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة TrelloListPrint

قم بتنزيل ملفات الامتداد TrelloListPrint بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم TrelloListPrint TrelloListPrint
ID fddaifegbjbkmjcgkplbenlgfbobjopn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/trellolistprint/fddaifegbjbkmjcgkplbenlgfbobjopn
الوصف Now you can print lists from Trello! The current version prints list titles and card titles as bullets, but future versions will…
حجم الملف 5.9 KB
عدد التثبيتات 195
النسخة الحالية 0.0.7
آخر تحديث 2016-07-16
تاريخ النشر 2016-07-16
تقييم 2.40/5 مجموع تقييمات 5
المطور Kiwitime Studios
نوع الدفع free
اللغات المدعومة 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
}