Trello Priority
Labeling priority using Impact/Cost scores
Τι είναι το Trello Priority;
Το Trello Priority είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ynunokawa.dev, και η κύρια λειτουργία του είναι "Labeling priority using Impact/Cost scores".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Trello Priority
Λήψη αρχείων επέκτασης Trello Priority σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" ] } } |