Trello Card Printer

This extension populates print-ready cards for use with Agile sprint boards.

Trello Card Printer क्या है?

Trello Card Printer thesheps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension populates print-ready cards for use with Agile sprint boards."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Trello Card Printer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This simple chrome extension generates print-ready cards for your sprint backlog.  It integrates seamlessly into your Trello board, and allows for the selection of different colours and categories for your tickets.

Recent Changes:
- Adds some other fields woo!
- Adds fix to pull changes from local storage                    

एक्सटेंशन की मूल जानकारी

नाम Trello Card Printer Trello Card Printer
ID dakpbdiplbbpkiejkbdebphiajboajic
आधिकारिक URL https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic
विवरण This extension populates print-ready cards for use with Agile sprint boards.
फ़ाइल का आकार 251 KB
स्थापना संख्या 852
वर्तमान संस्करण 2.4
अंतिम अपडेट 2019-06-08
प्रकाशन तिथि 2019-06-08
रेटिंग 3.75/5 कुल 8 रेटिंग्स
डेवलपर thesheps
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Card Printer",
    "description": "This extension populates print-ready cards for use with Agile sprint boards.",
    "version": "2.4",
    "short_name": "Trello Card Printer",
    "browser_action": {
        "default_icon": "src\/img\/icon.png",
        "default_popup": "src\/popup.html",
        "default_title": "Print Trello Cards"
    },
    "icons": {
        "128": "src\/img\/extension-icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "src\/settings.html",
        "src\/popup.html"
    ],
    "options_page": "src\/settings.html",
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.min.js"
            ],
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    }
}