Trello Card Printer
This extension populates print-ready cards for use with Agile sprint boards.
Wat is Trello Card Printer?
Trello Card Printer is een Chrome-extensie ontwikkeld door thesheps, en de belangrijkste functie is "This extension populates print-ready cards for use with Agile sprint boards.".
Extensie Screenshots
Download het CRX-bestand van de extensie Trello Card Printer
Download Trello Card Printer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Trello Card Printer |
ID | dakpbdiplbbpkiejkbdebphiajboajic |
Officiële URL | https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic |
Beschrijving | This extension populates print-ready cards for use with Agile sprint boards. |
Bestandsgrootte | 251 KB |
Aantal Installaties | 852 |
Huidige Versie | 2.4 |
Laatst Bijgewerkt | 2019-06-08 |
Publicatiedatum | 2019-06-08 |
Beoordeling | 3.75/5 Totaal 8 Beoordelingen |
Ontwikkelaar | thesheps |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |