TrelloX

Trello with focus.

Τι είναι το TrelloX;

Το TrelloX είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://trellox.io, και η κύρια λειτουργία του είναι "Trello with focus.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        (For videos see the website.)

Now open source: https://github.com/sammilucia/TrelloX. I'm busy and need help! 😊

About
-----
Trello is amazing, but as boards fill up it's information overload!!

TrelloX adds some careful design changes to give you back focus, without changing the stuff that makes Trello great.

User feedback
-------------
"We use Trello heavily at work and have a LOT of lists and cards everywhere... this handy little extension cleans up a lot of these issues by...utilising the screen real estate in much smarter ways." - Kyle

"TrelloX adds some very useful and intuitive features which helps significantly with my workflows." - Marshall

Version 1.8 beta
------------------
- Removed dependency on mutation-summary (it was deprecated and causing speed issues)
- Reworked how TrelloX installs to make it much more performant

Version 1.7.2 update
------------------
This is the start of the a code tidy-up and performance improvements

Version 1.7.1 update
------------------
Performance improvements. Restored TrelloX's Separator Card appearance, now that Trello has implemented its own. TrelloX's is nicer 😊

Version 1.7 update
------------------
Fixed a problem with positioning of collapsed Lists, where different versions/flavors of Chromium-based browsers might render collapsed List names in the wrong location. Thank you to the person who reported this! 😊

Version 1.6 update
------------------
Fixes a performance problem introduced with the latest Atlassian update. This is a quick fix that causes a few minor annoyances (but fixes the speed issues). I'll come back and fix everything cleanly as soon as possible. A reminder TrelloX is now open source, if you want to contribute, please get in touch 😊.

Version 1.5 update
------------------
Reverted Trello's fonts back from SF/Segoe to Helvetica Neue/Helvetica/Arial
TrelloX is now open source https://www.trellox.io/post/trellox-is-now-open-source

Version 1.4 update
------------------
Workaround for trello.com update.

Version 1.3 update
------------------
This is a maintenance release, focusing on performance and robustness
- Added framework to connect TrelloX to the Trello API (for future)
- Further performance increases of common functions should make TrelloX feel more lightweight
- Fixed: TrelloX should now always install correctly after a page refresh (please let me know)
- Fixed: New Cards now get a Number if Numbers:On
- Fixed: All Cards now display Numbers on page refresh if Numbers:On
- Fixed: A Card now keeps its Number after being dragged
- Fixed: Subtasks are now hidden on page refresh if Subtasks:Off
- Fixed: Card Numbers are no longer repeatedly redrawn

Version 1.2 update
------------------
- Fix performance issues when updating Card Descriptions and Comments

Version 1.1 update
------------------
- Ability to hide subtask cards (or "Next Actions")

Features overview
-----------------
- Cleaner layout
- Hide/collapse lists
- @mentions
- #tags
- Separator cards
- Header cards
- Numbered cards
- Line breaks in card titles
- !time
- Subcards/Next Action cards
- No lag, CPU, or battery overhead

Contact me for feedback and suggestions 😊                    

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

Όνομα TrelloX TrelloX
ID poojjgfbgmmilcehfpffgcadnclcdnfl
Επίσημο URL https://chromewebstore.google.com/detail/trellox/poojjgfbgmmilcehfpffgcadnclcdnfl
Περιγραφή Trello with focus.
Μέγεθος Αρχείου 149 KB
Αριθμός Εγκαταστάσεων 547
Τρέχουσα Έκδοση 1.8
Τελευταία Ενημέρωση 2021-07-12
Ημερομηνία Δημοσίευσης 2020-06-14
Αξιολόγηση 3.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://trellox.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.trellox.io/how-to-use
Διεύθυνση URL της Σελίδας Βοήθειας https://trellox.io/contact
URL της Σελίδας Πολιτικής Απορρήτου https://www.trellox.io/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TrelloX",
    "description": "Trello with focus.",
    "author": "Samantha Glocker",
    "version": "1.8",
    "homepage_url": "https:\/\/trellox.io",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "24": "img\/icon24.png",
            "32": "img\/icon32.png"
        },
        "default_title": "TrelloX. Trello with focus."
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/jquery-ui.js",
                "js\/main.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/trello.com\/*"
    ]
}