Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
ما هو Full screen card view for Trello؟
Full screen card view for Trello هو إضافة Chrome تم تطويرها بواسطة https://justin.kelly.org.au، والميزة الرئيسية لها هي "Makes the card and edit window in Trello.com full screen".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Full screen card view for Trello
قم بتنزيل ملفات الامتداد Full screen card view for Trello بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Converts the small Trello card view/edit windows to be full screen height and width. If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use. To fix this I whipped up a quick chrome extension to make the card edit window full screen, More info: * http://blog.justin.kelly.org.au/trello-big-edit/ Code on GitHub: * https://github.com/justinkelly/trello_big_edit
معلومات أساسية عن التمديد
الاسم | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
الوصف | Makes the card and edit window in Trello.com full screen |
حجم الملف | 5.92 KB |
عدد التثبيتات | 1,820 |
النسخة الحالية | 3 |
آخر تحديث | 2013-08-09 |
تاريخ النشر | 2013-08-08 |
تقييم | 4.38/5 مجموع تقييمات 16 |
المطور | https://justin.kelly.org.au |
نوع الدفع | free |
موقع الإضافة | https://github.com/justinkelly/trello_big_edit |
عنوان صفحة المساعدة | https://github.com/justinkelly/trello_big_edit/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Full screen card view for Trello", "version": "3", "manifest_version": 2, "description": "Makes the card and edit window in Trello.com full screen", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "trello_big_edit.user.js" ] } ] } |