Swimlanes for Trello

Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.

Τι είναι το Swimlanes for Trello;

Το Swimlanes for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jeff Yaus, και η κύρια λειτουργία του είναι "Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.".

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

screenshot

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

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

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

                        NOTE: THIS EXTENSION IS NO LONGER BEING MAINTAINED! If you find any issues with it, please do not contact me about it, as I'm no longer fixing any issues with this extension.

Please content Trello and encourage them to add built-in support for swimlanes instead!

- - - -

Trello is a handy tool for keeping track of list items, but it limits you to a single row of lists. This lightweight, keep-it-simple extension for Trello allows you to create multiple horizontal "swimlanes" of lists.

Just add the | character or swimmer emoji 🏊 to the header of any list that should start a swimlane, and you're all set! The lane will be labeled with whatever text follows the swimmer, so if the header reads "Backlog for |Project X", that lane's label will read "Project X".

Moving lists around can cause Trello to get confused and show everything in one lane again; just reload the page to fix it. You may also find it easier to toggle off the extension, re-arrange your lists, and then re-enable the extension. (This is not ideal, for certain, but it's so far unavoidable.)

Note: the extension may ask for permission to view your browsing history. This is to allow it to activate itself only on Trello pages; it is inactive anywhere else. It does not and will not collect, save, or transmit your browsing history.                    

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

Όνομα Swimlanes for Trello Swimlanes for Trello
ID lhgcmlaedabaaaihmfdkldejjjmialgl
Επίσημο URL https://chromewebstore.google.com/detail/swimlanes-for-trello/lhgcmlaedabaaaihmfdkldejjjmialgl
Περιγραφή Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.
Μέγεθος Αρχείου 348 KB
Αριθμός Εγκαταστάσεων 11,180
Τρέχουσα Έκδοση 1.7
Τελευταία Ενημέρωση 2023-10-08
Ημερομηνία Δημοσίευσης 2018-03-16
Αξιολόγηση 3.47/5 Συνολικά 34 Αξιολογήσεις
Προγραμματιστής Jeff Yaus
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jyaus/swimlanes-for-trello
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Swimlanes for Trello",
    "description": "Support arranging Trello lists into horizontal swimlanes. To start a new swimlane, just add | or a swimmer emoji to a list's header.",
    "version": "1.7",
    "author": "Jeff Yaus",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "*:\/\/trello.com\/b\/*",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "css\/trello-swimlanes.css"
    ],
    "page_action": {
        "default_title": "Swimlanes for Trello"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            }
        }
    }
}