Trello Points
Sums points for a Trello column when cards have associated points as labels
Qu'est-ce que Trello Points ?
Trello Points est une extension Chrome développée par nstetich, et sa fonction principale est "Sums points for a Trello column when cards have associated points as labels".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Trello Points
Téléchargez les fichiers d'extension Trello Points 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
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.
Informations de Base sur l'Extension
Nom | Trello Points |
ID | goigmjpaehddoikooikbblloogaijjpo |
URL Officiel | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
Description | Sums points for a Trello column when cards have associated points as labels |
Taille du Fichier | 15.17 KB |
Nombre d'Installations | 22 |
Version Actuelle | 0.0.10 |
Dernière Mise à Jour | 2016-03-10 |
Date de Publication | 2016-03-10 |
Évaluation | 4.00/5 Total 3 Évaluations |
Développeur | nstetich |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |