Trello minimal UI toggle
Hide unused elements from Trello board
ما هو Trello minimal UI toggle؟
Trello minimal UI toggle هو إضافة Chrome تم تطويرها بواسطة terrylidev، والميزة الرئيسية لها هي "Hide unused elements from Trello board".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello minimal UI toggle
قم بتنزيل ملفات الامتداد Trello minimal UI toggle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions.
معلومات أساسية عن التمديد
الاسم | Trello minimal UI toggle |
ID | higifdcpoicalcpgmbohdohmcgamabfn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn |
الوصف | Hide unused elements from Trello board |
حجم الملف | 232 KB |
عدد التثبيتات | 40 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-06-08 |
تاريخ النشر | 2020-06-07 |
تقييم | 4.67/5 مجموع تقييمات 3 |
المطور | terrylidev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello minimal UI toggle", "version": "1.0.0", "description": "Hide unused elements from Trello board", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon128.png" }, "content_scripts": [ { "js": [ "content.js" ], "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ] } ], "permissions": [ "storage" ] } |