[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
ما هو [DEPRECATED] List Layouts for Trello؟
[DEPRECATED] List Layouts for Trello هو إضافة Chrome تم تطويرها بواسطة Natalie Chouinard، والميزة الرئيسية لها هي "Allow Trello lists to be displayed vertically or in a grid.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة [DEPRECATED] List Layouts for Trello
قم بتنزيل ملفات الامتداد [DEPRECATED] List Layouts for Trello بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
***DEPRECATED*** This Chrome extension is now deprecated. Please consider these alternatives: Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello ***DEPRECATED*** The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon.
معلومات أساسية عن التمديد
الاسم | |
ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
الوصف | Allow Trello lists to be displayed vertically or in a grid. |
حجم الملف | 10.65 KB |
عدد التثبيتات | 51,027 |
النسخة الحالية | 4.0 |
آخر تحديث | 2023-10-31 |
تاريخ النشر | 2019-07-27 |
تقييم | 4.63/5 مجموع تقييمات 192 |
المطور | Natalie Chouinard |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/sudonatalie/layout-trello |
عنوان صفحة المساعدة | https://github.com/sudonatalie/layout-trello/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "[DEPRECATED] List Layouts for Trello", "description": "Allow Trello lists to be displayed vertically or in a grid.", "version": "4.0", "author": "Natalie Chouinard", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/b\/*" ], "css": [ "css\/layout.css" ], "js": [ "js\/init.js" ] } ], "permissions": [ "*:\/\/trello.com\/b\/*", "declarativeContent", "storage", "webNavigation" ], "page_action": { "default_title": "List Layouts for Trello" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" } } } } |