Trello Priority
Labeling priority using Impact/Cost scores
Trello Priority क्या है?
Trello Priority ynunokawa.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Labeling priority using Impact/Cost scores"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello Priority एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
It can automatically add a label of priority into cards using Impact/Cost scores. Getting Started 1. Add Trello Priority into your chrome 2. Create labels for Impact/Cost score (High Cost | Mid Cost | Low Cost | High Impact | Mid Impact | Low Impact) 3. Label each Impact/Cost score (e.g. [High Cost] [Mid Impact]) 4. Display priorities after clicking the "Update Priorities" button Notice - You should label one each Impact/Cost score - It does not display a priority on card without valid Impact/Cost scores - Priority hide if you replace a card into other lists (You can see it clicking the "Update Priorities" button)
एक्सटेंशन की मूल जानकारी
नाम | Trello Priority |
ID | cnkhgafbkcdclefdglbgdghohlomiofn |
आधिकारिक URL | https://chromewebstore.google.com/detail/trello-priority/cnkhgafbkcdclefdglbgdghohlomiofn |
विवरण | Labeling priority using Impact/Cost scores |
फ़ाइल का आकार | 63.92 KB |
स्थापना संख्या | 268 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2019-06-13 |
प्रकाशन तिथि | 2019-06-13 |
रेटिंग | 4.25/5 कुल 4 रेटिंग्स |
डेवलपर | ynunokawa.dev |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Priority", "description": "Labeling priority using Impact\/Cost scores", "version": "1.6", "manifest_version": 2, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "matrix.html", "default_icon": "images\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/b\/*" ], "css": [ "css\/style.css" ], "js": [ "lib\/jquery.js", "js\/matrix.js" ] } ], "permissions": [ "https:\/\/trello.com\/b\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "scripts": [ "js\/analytics.js" ] } } |