Progress for Trello

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

¿Qué es Progress for Trello?

Progress for Trello es una extensión de Chrome desarrollada por https://cycododge.com, y su función principal es "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Progress for Trello

Descarga archivos de extensión Progress for Trello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ## 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.                    

Información Básica de la Extensión

Nombre Progress for Trello Progress for Trello
ID ihneehmaifakdfpbjmneobgeifcaddbd
URL Oficial https://chromewebstore.google.com/detail/progress-for-trello/ihneehmaifakdfpbjmneobgeifcaddbd
Descripción Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.
Tamaño del Archivo 1.45 MB
Cantidad de Instalaciones 435
Versión Actual 1.2.4
Última Actualización 2018-01-18
Fecha de Publicación 2018-01-18
Calificación 2.80/5 Total de 5 Calificaciones
Desarrollador https://cycododge.com
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}