Trello Priority
Labeling priority using Impact/Cost scores
Co je Trello Priority?
Trello Priority je rozšíření Chrome vyvinuté ynunokawa.dev, a jeho hlavní funkcí je „Labeling priority using Impact/Cost scores“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Trello Priority
Stáhněte si soubory rozšíření Trello Priority ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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) Základní Informace o Rozšíření
| Název | |
| ID | cnkhgafbkcdclefdglbgdghohlomiofn |
| Oficiální URL | https://chromewebstore.google.com/detail/trello-priority/cnkhgafbkcdclefdglbgdghohlomiofn |
| Popis | Labeling priority using Impact/Cost scores |
| Velikost souboru | 63.92 KB |
| Počet instalací | 268 |
| Aktuální Verze | 1.6 |
| Poslední Aktualizace | 2019-06-13 |
| Datum Vydání | 2019-06-13 |
| Hodnocení | 4.25/5 Celkem 4 Hodnocení |
| Vývojář | ynunokawa.dev |
| Typ Platby | free |
| Podporované Jazyky | 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"
]
}
} | |