Trello Card Printer

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

Qu'est-ce que Trello Card Printer ?

Trello Card Printer est une extension Chrome développée par thesheps, et sa fonction principale est "This extension populates print-ready cards for use with Agile sprint boards.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello Card Printer

Téléchargez les fichiers d'extension Trello Card Printer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Trello Card Printer Trello Card Printer
ID dakpbdiplbbpkiejkbdebphiajboajic
URL Officiel https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic
Description This extension populates print-ready cards for use with Agile sprint boards.
Taille du Fichier 251 KB
Nombre d'Installations 852
Version Actuelle 2.4
Dernière Mise à Jour 2019-06-08
Date de Publication 2019-06-08
Évaluation 3.75/5 Total 8 Évaluations
Développeur thesheps
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}