Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
ما هو Trello Auto Scroll؟
Trello Auto Scroll هو إضافة Chrome تم تطويرها بواسطة dashboard-team، والميزة الرئيسية لها هي "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello Auto Scroll
قم بتنزيل ملفات الامتداد Trello Auto Scroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allow your Trello scroll automatically until the last card and back to the first card as a loop. It's extremely useful for using Trello as a slide show board. Developed by: Willian Keller Diego Ocko Martins
معلومات أساسية عن التمديد
الاسم | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
الوصف | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
حجم الملف | 78.89 KB |
عدد التثبيتات | 126 |
النسخة الحالية | 1.7 |
آخر تحديث | 2017-11-06 |
تاريخ النشر | 2017-11-06 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | dashboard-team |
نوع الدفع | free |
اللغات المدعومة | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.7", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/utils\/storage.min.js", "src\/utils\/runtime.min.js", "src\/vendor\/jquery.min.js", "src\/main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "src\/options.html", "chrome_style": false }, "icons": { "128": "src\/icons\/icon.png" }, "browser_action": { "default_icon": "src\/icons\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Auto Scroll" }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |