Trello Card Numbers Plus [2023 Update]
Adds card numbers on Trello and more! Updated October 2023
Τι είναι το Trello Card Numbers Plus [2023 Update];
Το Trello Card Numbers Plus [2023 Update] είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://leonardomontini.dev, και η κύρια λειτουργία του είναι "Adds card numbers on Trello and more! Updated October 2023".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Trello Card Numbers Plus [2023 Update]
Λήψη αρχείων επέκτασης Trello Card Numbers Plus [2023 Update] σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
WORKING AFTER OCTOBER 2023 TRELLO UPDATE --- A fully customizable Chrome extension show unique card numbers/ID and counting cards in each list. With card IDs it's much easier to refer to a specific card with your team and in commit messages. This extension provides full customization of the card numbers, have a look! Features: - Show card ID - Customize card ID format - Toggle card ID display - Count cards for each list - Configs live reload - Customize colors - Exclude some boards - Toggle cards count display Planned features ...feel free to suggest a feature by opening an issue on GitHub!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Trello Card Numbers Plus [2023 Update] |
ID | ncibjlmfhjcjnphnpphgphbflpdpliei |
Επίσημο URL | https://chromewebstore.google.com/detail/trello-card-numbers-plus/ncibjlmfhjcjnphnpphgphbflpdpliei |
Περιγραφή | Adds card numbers on Trello and more! Updated October 2023 |
Μέγεθος Αρχείου | 42.46 KB |
Αριθμός Εγκαταστάσεων | 2,220 |
Τρέχουσα Έκδοση | 1.3.3 |
Τελευταία Ενημέρωση | 2023-11-21 |
Ημερομηνία Δημοσίευσης | 2022-06-17 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | https://leonardomontini.dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Balastrong/trello-card-numbers-plus |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/Balastrong/trello-card-numbers-plus/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Numbers Plus [2023 Update]", "version": "1.3.3", "description": "Adds card numbers on Trello and more! Updated October 2023", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "Trello Card Numbers Plus", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "trelloCardNumberPlus.js" ], "css": [ "trelloCardNumberPlus.css" ] } ] } |