Trello Business Style
Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards
Τι είναι το Trello Business Style;
Το Trello Business Style είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Leonardo C Bottaro, και η κύρια λειτουργία του είναι "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Trello Business Style
Λήψη αρχείων επέκτασης Trello Business Style σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension adds a button on the top right corner inside your boards, click it to make the cards more readable and less crowded.
Changelog:
v1.2.1
Fixed Bug when changing boards
Tweaks to the style
v1.2.0
Updated extension to better use new Trello features
Added persistent state
v1.1.0
Bug fixes
v1.0.0
Initial Release
Make it better! Contribute on GitHub! https://github.com/leocb/trello-businessStyle Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | knkibcjejmdcepoomodabefjobmajoco |
| Επίσημο URL | https://chromewebstore.google.com/detail/trello-business-style/knkibcjejmdcepoomodabefjobmajoco |
| Περιγραφή | Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards |
| Μέγεθος Αρχείου | 2.22 MB |
| Αριθμός Εγκαταστάσεων | 297 |
| Τρέχουσα Έκδοση | 1.2.1 |
| Τελευταία Ενημέρωση | 2018-03-28 |
| Ημερομηνία Δημοσίευσης | 2018-03-28 |
| Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
| Προγραμματιστής | Leonardo C Bottaro |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/leocb/trello-businessStyle |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/leocb/trello-businessStyle/issues |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Business Style",
"short_name": "trello-Business-Style",
"description": "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards",
"version": "1.2.1",
"icons": {
"16": "images\/icon-16.png",
"64": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"storage",
"https:\/\/trello.com\/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/trello.com\/*"
],
"js": [
"content-scripts.js"
],
"css": [
"content-styles.css"
]
}
]
} | |