Trello Card Counter
Card counters and card identifiers for easy collaboration and project management
ما هو Trello Card Counter؟
Trello Card Counter هو إضافة Chrome تم تطويرها بواسطة Alex Benoit، والميزة الرئيسية لها هي "Card counters and card identifiers for easy collaboration and project management".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello Card Counter
قم بتنزيل ملفات الامتداد Trello Card Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
[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.
معلومات أساسية عن التمديد
الاسم | Trello Card Counter |
ID | hepiaakjhimoagmpalbfoojemcnlnagn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn |
الوصف | Card counters and card identifiers for easy collaboration and project management |
حجم الملف | 14.12 KB |
عدد التثبيتات | 20,000 |
النسخة الحالية | 3.0.0 |
آخر تحديث | 2023-12-03 |
تاريخ النشر | 2017-11-22 |
تقييم | 3.93/5 مجموع تقييمات 27 |
المطور | Alex Benoit |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://alexbenoit.me/ |
اللغات المدعومة | 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" } } |