Progress for Trello
Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.
Cos'è Progress for Trello?
Progress for Trello è un'estensione di Chrome sviluppata da https://cycododge.com, e la sua funzione principale è "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Progress for Trello
Scarica i file di estensione Progress for Trello in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
## 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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ihneehmaifakdfpbjmneobgeifcaddbd |
| URL Ufficiale | https://chromewebstore.google.com/detail/progress-for-trello/ihneehmaifakdfpbjmneobgeifcaddbd |
| Descrizione | Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists. |
| Dimensione del File | 1.45 MB |
| Conteggio Installazioni | 435 |
| Versione Corrente | 1.2.4 |
| Ultimo Aggiornamento | 2018-01-18 |
| Data di Pubblicazione | 2018-01-18 |
| Valutazione | 2.80/5 Totale 5 Valutazioni |
| Sviluppatore | https://cycododge.com |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
]
} | |