Trello Points
Sums points for a Trello column when cards have associated points as labels
Was ist Trello Points?
Trello Points ist eine Chrome-Erweiterung, die von nstetich entwickelt wurde, und ihr Hauptmerkmal ist "Sums points for a Trello column when cards have associated points as labels".
Erweiterungsscreenshots
Trello Points-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello Points-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Sum Points in Trello If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board. Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful.
Grundlegende Informationen zur Erweiterung
Name | Trello Points |
ID | goigmjpaehddoikooikbblloogaijjpo |
Offizielle URL | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
Beschreibung | Sums points for a Trello column when cards have associated points as labels |
Dateigröße | 15.17 KB |
Installationsanzahl | 22 |
Aktuelle Version | 0.0.10 |
Letztes Update | 2016-03-10 |
Veröffentlichungsdatum | 2016-03-10 |
Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
Entwickler | nstetich |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.10", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |