Flourish
Simple usability improvements for Blossom.
ما هو Flourish؟
Flourish هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Simple usability improvements for Blossom.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Flourish
قم بتنزيل ملفات الامتداد Flourish بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension enhances a few core features of Blossom. Real-Time Board Updating: - Allows your Blossom board to update when there is update made on the server. No more needing to hit refresh to see if your board has changed. - Won't refresh while you're in the middle of moving cards. Collaborators Box v2.0: - Transforms the face image tiles into rows of faces with names, sorted alphabetically, making is significantly easier to find a given person. - Adds a search input to find a particular person quickly Open source on GitHub (feel free to open an issue/PR!): https://github.com/tonybaroneee/flourish
معلومات أساسية عن التمديد
الاسم | Flourish |
ID | idakjmhehgdoppgbejfccgcdlcpbknfo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/flourish/idakjmhehgdoppgbejfccgcdlcpbknfo |
الوصف | Simple usability improvements for Blossom. |
حجم الملف | 18.93 KB |
عدد التثبيتات | 55 |
النسخة الحالية | 1.3.0 |
آخر تحديث | 2016-10-26 |
تاريخ النشر | 2016-10-25 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/tonybaroneee/flourish |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Flourish", "short_name": "Flourish", "version": "1.3.0", "description": "Simple usability improvements for Blossom.", "icons": { "128": "images\/flourish128.png" }, "page_action": { "default_icon": "images\/flourish38.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.blossom.io\/*", "https:\/\/blossom.io\/*" ], "css": [ "flourish.css" ], "js": [ "extension.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "flourish.js" ] } |