Points for Trello - Combined Edition

Shamelessly adapted from the very useful 'Points for Trello' extension (see https://github.com/jgraglia/Trello-Points)

Vad är Points for Trello - Combined Edition?

Points for Trello - Combined Edition är en Chrome-tillägg utvecklad av 91dave, och dess huvudfunktion är "Shamelessly adapted from the very useful 'Points for Trello' extension (see https://github.com/jgraglia/Trello-Points)".

Tilläggsskärmbilder

screenshot

Ladda ner Points for Trello - Combined Edition-förlängningens CRX-fil

Ladda ner Points for Trello - Combined Edition-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        == NOTICE ==
As of 2016, this app is no longer being updated due to the fact I'm no longer using Trello itself. Anyone interested in forking this can retrieve the code from the following URL:
* http://91dave.com/trello-points-combined.zip

== ABOUT ==
Based on the two preceding Chrome Extensions (the developers of which deserve most of the credit anyway!):
* Scrum for Trello - http://github.com/Q42/TrelloScrum
* Points for Trello - https://github.com/jgraglia/Trello-Points

'Points was a fork of 'Scrum, and 'Combined is basically a re-implementation
of the same idea, re-using snippets of code and resources from the originals.

The aims of Points for Trello - Combined can be summarised as:
	* Track several types of points. Currently supports
		* (estimate) points in Dark Blue
		* [dev time] points in Light Blue
		* [qa time] points in Green
	* Ability to add features as I need them
	* Lighter memory footprint
	* Increased reliablity

== VERSION HISTORY ==
0.1 - 0.50: Incarnations as TrelloScrum or Trello points
0.60:   * Created as Points for Trello -  Combined
		* Added ability to add Green 'QA' points with {2} etc
0.61:   * Fix bug with changing badges
0.62:   * Ability to add Red 'tags' with =tag= etc
0.63:   * Removing the last value in a list now removes the lists total
0.64:   * Display board totals in board header
0.65:   * Fix rounding error on totals
0.66:   * Add border-radius back in (given that Trello's CSS now doesn't include it)
0.70:   * Fix several things to do with Trello's re-branding
0.71:   * Remove background app element (still have old files yet to be removed)
0.72:   * Make sure that badges re-render in the correct order

== KNOWN BUGS ==
Behaviour when deleting a =tag= or [{(point)}] can be a little inconsistent,
ranging from badges staying, to all badges disappearing.

Sometimes when a notification badge is removed, all point badges disappear.

When other badges are added (e.g. new attachment, someone joins the card), the
points badges will disappear until the next refresh cycle.

All of the above tend to be fixed by refreshing the entire page

== ACKNOWLEDGEMENTS ==
The vast majority of credit for this extension must go to the developers of
the original extensions. I've simply re-written/extended their work to my
own ends! (More accurately, this is a fork of Trello-Points).

== License ==
Apache License 2.0 http://www.apache.org/licenses/LICENSE-2.0
In accordance of the license above, I give due notice that ANY and ALL files
contained herein are liable to have been changed.


I'm also nothing to do with Trello or Fog Creek Software. Although it has to
be said, owner Joel Spolsky (http://twitter.com/spolsky) is worth a follow.
		
== AUTHOR ==
Developer: @91dave (http://twitter.com/91dave)                    

Grundläggande Information om Tillägg

Namn Points for Trello - Combined Edition Points for Trello - Combined Edition
ID elfbcdococbdgeaolelhgdghjgkkhndf
Officiell webbadress https://chromewebstore.google.com/detail/points-for-trello-combine/elfbcdococbdgeaolelhgdghjgkkhndf
Beskrivning Shamelessly adapted from the very useful 'Points for Trello' extension (see https://github.com/jgraglia/Trello-Points)
Filstorlek 81.72 KB
Antal Installationer 1,001
Aktuell Version 0.74
Senast Uppdaterad 2018-01-07
Publiceringsdatum 2018-01-07
Betyg 4.13/5 Totalt 8 Betyg
Utvecklare 91dave
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "trellopoints.css"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "utils.js",
                "trellopoints.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ]
        }
    ],
    "description": "Shamelessly adapted from the very useful 'Points for Trello' extension (see https:\/\/github.com\/jgraglia\/Trello-Points)",
    "icons": {
        "128": "images\/logo-128.png",
        "48": "images\/icon_trello_sm.png",
        "16": "images\/icon.png"
    },
    "manifest_version": 2,
    "name": "Points for Trello - Combined Edition",
    "version": "0.74",
    "web_accessible_resources": [
        "images\/points-icon.png"
    ]
}