Trello Card Counter
Card counters and card identifiers for easy collaboration and project management
Apa itu Trello Card Counter?
Trello Card Counter adalah ekstensi Chrome yang dikembangkan oleh Alex Benoit, dan fitur utamanya adalah "Card counters and card identifiers for easy collaboration and project management".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Trello Card Counter
Unduh file ekstensi Trello Card Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
[recently updated, fully working] Trello Card Counter Plus tells you how many cards you have in your lists and board and gives the cards identifiers for easier collaboration and project management. Updated for Trello 2024.
Informasi Dasar Ekstensi
Nama | Trello Card Counter |
ID | hepiaakjhimoagmpalbfoojemcnlnagn |
URL Resmi | https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn |
Deskripsi | Card counters and card identifiers for easy collaboration and project management |
Ukuran File | 14.12 KB |
Jumlah Instalasi | 20,000 |
Versi Saat Ini | 3.0.0 |
Terakhir Diperbarui | 2023-12-03 |
Tanggal Publikasi | 2017-11-22 |
Penilaian | 3.93/5 Total 27 Penilaian |
Pengembang | Alex Benoit |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://alexbenoit.me/ |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Counter", "version": "3.0.0", "description": "Card counters and card identifiers for easy collaboration and project management", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "trello-override.js" ], "css": [ "trello-override.css" ] } ], "icons": { "128": "trelloext.png" } } |