Trello Points
Sums points for a Trello column when cards have associated points as labels
Vad är Trello Points?
Trello Points är en Chrome-tillägg utvecklad av nstetich, och dess huvudfunktion är "Sums points for a Trello column when cards have associated points as labels".
Tilläggsskärmbilder
Ladda ner Trello Points-förlängningens CRX-fil
Ladda ner Trello Points-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
Sum Points in Trello
If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board.
Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful. Grundläggande Information om Tillägg
| Namn | |
| ID | goigmjpaehddoikooikbblloogaijjpo |
| Officiell webbadress | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
| Beskrivning | Sums points for a Trello column when cards have associated points as labels |
| Filstorlek | 15.17 KB |
| Antal Installationer | 22 |
| Aktuell Version | 0.0.10 |
| Senast Uppdaterad | 2016-03-10 |
| Publiceringsdatum | 2016-03-10 |
| Betyg | 4.00/5 Totalt 3 Betyg |
| Utvecklare | nstetich |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.10",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/trello.com\/*",
"https:\/\/trello.com\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |