Trello Folds (Kanban for Trello)

Turn your Trello board into a Kanban system with WiP limits, combining lists, card count and collapsible lists

Τι είναι το Trello Folds (Kanban for Trello);

Το Trello Folds (Kanban for Trello) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Magnus Nord, και η κύρια λειτουργία του είναι "Turn your Trello board into a Kanban system with WiP limits, combining lists, card count and collapsible lists".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Trello Folds (Kanban for Trello)

Λήψη αρχείων επέκτασης Trello Folds (Kanban for Trello) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension adds foldable lists and sections to Trello boards, together with per list WiP limits turning your Trello board into a Kanban system.

Features
====================
- Combine lists and share WiP limit between lists. E.g. "development.in progress" and "development.done" ⇒ combines to one "development" list with two sub lists
- Press ⨯ in the list top right corner to fold it. Press anywhere on the folded list to expand it again.
- Turn cards into collapsable sections with a selected character repeated N times (defaults to double hashes, i.e. "##")
- Add WiP limits to lists by adding it in brackets to the list title, e.g. "My List [5]"
- Remembers view state for boards (can be disabled)
- Select how to visualize lists where WiP limit is exceeded
- Open the extension popup to configure it

FEEDBACK AND SUGGESTIONS APPRECIATED.

** CHANGELOG **

New in 0.10.3
====================
- Changed load behavior to work with changes in Trello

New in 0.10.2
====================
- Fixed collapsed board rendering offset issue due to changes in Trello's DOM/styles.
- Fixed bug with not remembering board collapsed state
- Minor fixes for board button hovering

New in 0.10.1
====================
- Further tweaks with board initialization/loading to make it more reliable. Hopefully it worked :-/
- Changed the default "load timeout" to 100 ms. Try increasing this value if boards do not load properly.

New in 0.10
====================
- Removed dependency on jQuery
- Improvements/tweaks to board initialization
- New "load timeout" setting (defaults to 1500 ms). Try to increase this value if boards do not load properly.

New in 0.9
====================
- Support for combining multiple (more than two) lists(!!)
- Better realtime more accurate adjustment of combined list height
- Combined list feature on by default when installing
- Fix when collapsing combined lists
- Fixes related to adding and removing lists in conjunction with combined lists
- Fix for "Compact Mode" button in wrong state after filtering
- Fixed backgound color for super lists
- Fix for having URL in title causing card not to count in WiP limit

For the full changelog go to the project's GitHub page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Trello Folds (Kanban for Trello) Trello Folds (Kanban for Trello)
ID egdkjinldbenhgdaodmdcdgknjnljihf
Επίσημο URL https://chromewebstore.google.com/detail/trello-folds-kanban-for-t/egdkjinldbenhgdaodmdcdgknjnljihf
Περιγραφή Turn your Trello board into a Kanban system with WiP limits, combining lists, card count and collapsible lists
Μέγεθος Αρχείου 83.1 KB
Αριθμός Εγκαταστάσεων 2,851
Τρέχουσα Έκδοση 0.10.3
Τελευταία Ενημέρωση 2022-07-13
Ημερομηνία Δημοσίευσης 2019-09-13
Αξιολόγηση 3.75/5 Συνολικά 32 Αξιολογήσεις
Προγραμματιστής Magnus Nord
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://nordmagnus.github.io/Trello-Folds/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/NordMagnus/Trello-Folds/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Trello Folds (Kanban for Trello)",
    "version": "0.10.3",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128-96.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "description": "Turn your Trello board into a Kanban system with WiP limits, combining lists, card count and collapsible lists",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "tdom.js",
                "trello-folds.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*.png"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ]
        }
    ]
}