Progress for Trello

Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.

Qu'est-ce que Progress for Trello ?

Progress for Trello est une extension Chrome développée par https://cycododge.com, et sa fonction principale est "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Progress for Trello

Téléchargez les fichiers d'extension Progress for Trello 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

                        ## Features

- Choose which lists to track progress against
- Option to track checklists
	- Option to track completed items
- Option to track scrum points *
- Per board settings
- Pre-selects lists based on title
	- 'done'
	- 'live'
	- 'complete'
	- 'finished'
	- 'closed'

* Supported Point Formats
	"Card Title (1.5)" //will count 1.5 points
		- Scrum For Trello - https://chrome.google.com/webstore/detail/scrum-for-trello/jdbcdblgjdpmfninkoogcfpnkjmndgje


## Note

This plug-in directly injects code into the Trello page in order to quickly and easily monitor changes to your boards.                    

Informations de Base sur l'Extension

Nom Progress for Trello Progress for Trello
ID ihneehmaifakdfpbjmneobgeifcaddbd
URL Officiel https://chromewebstore.google.com/detail/progress-for-trello/ihneehmaifakdfpbjmneobgeifcaddbd
Description Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.
Taille du Fichier 1.45 MB
Nombre d'Installations 435
Version Actuelle 1.2.4
Dernière Mise à Jour 2018-01-18
Date de Publication 2018-01-18
Évaluation 2.80/5 Total 5 Évaluations
Développeur https://cycododge.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Progress for Trello",
    "version": "1.2.4",
    "manifest_version": 2,
    "description": "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.",
    "homepage_url": "http:\/\/cycododge.com\/projects#progress",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "page": "analytics.html",
        "persistent": false
    },
    "permissions": [
        "https:\/\/*.trello.com\/*"
    ],
    "web_accessible_resources": [
        "js\/bp-trello.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "css\/bp-trello.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "js": [
                "js\/inject.js"
            ]
        }
    ]
}