Money for Trello
This extension adds a cost for each card in trello
Wat is Money for Trello?
Money for Trello is een Chrome-extensie ontwikkeld door Beinno, en de belangrijkste functie is "This extension adds a cost for each card in trello".
Extensie Screenshots
Download het CRX-bestand van de extensie Money for Trello
Download Money for Trello-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 extension is very usefull to know every card cost for Trello. It's based on scrum points. every card should have approximate estimate in it's title like an example: (2) Testing title Cost for cards like the above example are determined based on card estimate which is 2 for the above example. Point cost can be determined via extension options page
Basisinformatie over de Extensie
Naam | Money for Trello |
ID | acfcndamepdchedecnjanbdhbmhijchd |
Officiële URL | https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd |
Beschrijving | This extension adds a cost for each card in trello |
Bestandsgrootte | 3.78 MB |
Aantal Installaties | 71 |
Huidige Versie | 1.9 |
Laatst Bijgewerkt | 2016-11-12 |
Publicatiedatum | 2016-11-12 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Beinno |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Money for Trello", "description": "This extension adds a cost for each card in trello", "version": "1.9", "web_accessible_resources": [ "css\/*", "img\/*.png" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/www.trello.com\/*", "https:\/\/www.trello.com\/*", "http:\/\/trello.com\/*", "https:\/\/trello.com\/*", "https:\/\/*.cloudfront.net\/*", "file:\/\/\/*\/*.*" ], "js": [ "js\/libs\/jquery\/dist\/jquery.min.js", "js\/main.js" ], "css": [ "css\/main.css" ], "run_at": "document_end" } ], "background": { "page": "background.html", "persistent": true }, "options_page": "options.html" } |