Trello Points
Sums points for a Trello column when cards have associated points as labels
Trello Points क्या है?
Trello Points nstetich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sums points for a Trello column when cards have associated points as labels"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello Points एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Trello Points |
ID | goigmjpaehddoikooikbblloogaijjpo |
आधिकारिक URL | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
विवरण | Sums points for a Trello column when cards have associated points as labels |
फ़ाइल का आकार | 15.17 KB |
स्थापना संख्या | 22 |
वर्तमान संस्करण | 0.0.10 |
अंतिम अपडेट | 2016-03-10 |
प्रकाशन तिथि | 2016-03-10 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | nstetich |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } ] } |