Hide Activity Details (+ Tweaks) for Trello

Hides activity details on Trello cards. Can now also be set to hide completed checklist items

Τι είναι το Hide Activity Details (+ Tweaks) for Trello;

Το Hide Activity Details (+ Tweaks) for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://beingmrkenny.co.uk, και η κύρια λειτουργία του είναι "Hides activity details on Trello cards. Can now also be set to hide completed checklist items".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Hide Activity Details (+ Tweaks) for Trello

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

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

                        Hide Activity Details

When viewing a card, everything that was ever done to that card is displayed at the bottom. This is far more much information than most people care about, and it cluttered it so that comments were swamped. You can hide this by clicking “Hide Details”, but Trello doesn’t always remember your choice. You can set this extension to click that link for you every time you open a card. Activity details are always there, if you need them. Just click “Show Details”.

Please note: this extension does not stop Trello tracking activity.

Hide Completed Items

I use checklists all the time, and only want to see the items I have left to do. You can hide completed items by clicking “Hide completed items” above the checklist, but Trello doesn’t hide them by default. You can set this extension to click that link for you every time you open a card. Your completed items don’t go anywhere, just click “Show checked items” to see them again. They’ll be hidden the next time you open the card.

Show or Hide Card Label Text

In list view, card labels are shown as a strip of colour. If you have given the label a name, this can also be displayed. This was always a hidden feature in Trello, and lately it appears Trello has removed this functionality. This option brings it back — switch it on display card label text, switch it off to hide it.

Place Cursor in Two Factor Auth field

If you have two factor authentication enabled, this option will place the cursor in the field when it appears.

This extension is only tested in the the most recent version of Chrome. If reporting a problem, please try to be as specific as possible (e.g. what is not working and where, in which circumstances, etc).                    

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

Όνομα Hide Activity Details (+ Tweaks) for Trello Hide Activity Details (+ Tweaks) for Trello
ID hcgmjpjodnakphfpegldpbcajlmpfipa
Επίσημο URL https://chromewebstore.google.com/detail/hide-activity-details-+-t/hcgmjpjodnakphfpegldpbcajlmpfipa
Περιγραφή Hides activity details on Trello cards. Can now also be set to hide completed checklist items
Μέγεθος Αρχείου 54.94 KB
Αριθμός Εγκαταστάσεων 1,596
Τρέχουσα Έκδοση 3.3.1
Τελευταία Ενημέρωση 2023-12-14
Ημερομηνία Δημοσίευσης 2019-07-13
Αξιολόγηση 5.00/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής https://beingmrkenny.co.uk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://beingmrkenny.co.uk/web-extensions/hide-activity-trello
URL της Σελίδας Πολιτικής Απορρήτου https://beingmrkenny.co.uk/web-extensions/hide-activity-trello
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Activity Details (+ Tweaks) for Trello",
    "description": "Hides activity details on Trello cards. Can now also be set to hide completed checklist items",
    "homepage_url": "http:\/\/beingmrkenny.co.uk\/web-extensions\/hide-activity-trello",
    "author": "Mark Kenny",
    "version": "3.3.1",
    "icons": {
        "16": "Icons\/192.png",
        "32": "Icons\/192.png",
        "48": "Icons\/192.png",
        "64": "Icons\/192.png",
        "256": "Icons\/256.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/classes\/Global.js",
                "js\/classes\/DataStorage.js",
                "js\/classes\/Options.js",
                "js\/classes\/Clickers.js",
                "js\/classes\/LinkLinks.js",
                "js\/classes\/Process.js",
                "js\/functions.js",
                "js\/init.js"
            ],
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "css": [
                "css\/css.css"
            ],
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "action": {
        "default_title": "Hide Activity Details (+ Tweaks) for Trello",
        "default_popup": "options\/index.html",
        "default_icon": "Icons\/192.png"
    }
}