List Progress Bar for Trello

Shows various insights about trello board , at individual card list level as well as board level

Τι είναι το List Progress Bar for Trello;

Το List Progress Bar for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ceegees-ext-publishers, και η κύρια λειτουργία του είναι "Shows various insights about trello board , at individual card list level as well as board level".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης List Progress Bar for Trello

Λήψη αρχείων επέκτασης List Progress Bar for Trello σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        trello_list_progressbar
=======================

Functionality
--------------
Adds more statistical information about the different card lists on a trello board. Plugin calculates individual card weights based on the number of todo items [considers each todo item as a story point]. This weight is used to calculate different statistical data.


Use Case
--------------
you have N tasks to be completed for a milestone which started from D1 and ends on D2  on any day  D [ D1 <= D <= D2 ] .You can see the percentage completion of cards -[condiering the weight of the card] to the  percentage of total time finished. Which will convey a good deal about the health of target deadline for milestone.

If you are using trello in the "Todo" "Doing"  "Done" way the plugin shows the card distribution [there is an option to consider the todo weight and ignore the todo weightage ] on each of those lists as a pie chart. So that you can quickly get an idea about overall project status.
eg: If there are 10 cards on "Todo" , 10 on "Doing" ,30 on done "Done" - Todo: 20% , Doing : 20% , Done : 60% .


Supported browsers :
----------------------
The plugin is available as a chrome extension.

Other browsers can make use of the Bookmarklet 
javascript:(function(){var s=document.createElement("script");s.type="text/javascript";s.src="https://s3.amazonaws.com/cgs-dev/trello.js?r=6";document.body.appendChild(s)})();

Credits
---------------
 Raphael js - Used for plotting the pie chart

Versoin 1.92 

Bug fixes for recent trello codebase change,

Version 1.91 
-------------
Name change as suggested by Trello team.

Version 1.9
---------------
Changes for handling new Trello update.


Version 1.8
---------------
Bug Fixes 

Version 1.7
---------------
Changes for supporting Trello style changes.


Version 1.6.3
----------------
* Added Options tab for turning off the pie chart . Options can be accessed from the extensions preference pane


Version 1.6.2
-----------------
* Bug fixes, removing unwanted js references


Version 1.6.1
----------------
* Hook to board load events from trello home page 


Version 1.6
----------------
* Hook to board change events to update progress without a reload.
* Hook to Filter change events to update progress.
* Add the card distribution pie chart to show count of cards on each board.
* Show legends with colors same as that of pie chart.
* Option to toggle the card distribution wrt individual Todo Items Or Number of cards in the list.


Version 1.5
---------------
* Adds a progress bar to trello on individual card list to track progress of individual tasks.
* Extension helps to give a quick overview of the current list status.
* It adds a progress bar to show the cumulative  percentage of completion of individual cards on a list . 
* If the due dates are set on the individual card item, extension calculates the total number of days allocated for entire items in the card list and based on the today's date show the percentage of time depleted .                    

Βασικές Πληροφορίες Επέκτασης

Όνομα List Progress Bar for Trello List Progress Bar for Trello
ID klhahganeobopkelbdeljamclomlhhjg
Επίσημο URL https://chromewebstore.google.com/detail/list-progress-bar-for-tre/klhahganeobopkelbdeljamclomlhhjg
Περιγραφή Shows various insights about trello board , at individual card list level as well as board level
Μέγεθος Αρχείου 91.78 KB
Αριθμός Εγκαταστάσεων 5,488
Τρέχουσα Έκδοση 1.92
Τελευταία Ενημέρωση 2015-02-11
Ημερομηνία Δημοσίευσης 2015-02-11
Αξιολόγηση 3.64/5 Συνολικά 36 Αξιολογήσεις
Προγραμματιστής ceegees-ext-publishers
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Ceegees/trello_list_progressbar
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Ceegees/trello_list_progressbar/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "List Progress Bar for Trello",
    "description": "Shows various insights about trello board , at individual card list level as well as board level ",
    "version": "1.92",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "img\/icon_128.png",
        "48": "img\/icon_48.png",
        "16": "img\/icon_16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/*.google.com\/ https:\/\/charts.googleapis.com\/; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "js\/raphael.js",
                "js\/jquery.js",
                "js\/config.js",
                "js\/trello.js"
            ]
        }
    ]
}