Waffle Due Dates
Improves Waffle.io with recognition for due dates
ما هو Waffle Due Dates؟
Waffle Due Dates هو إضافة Chrome تم تطويرها بواسطة Eli / Industry Dive، والميزة الرئيسية لها هي "Improves Waffle.io with recognition for due dates".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Waffle Due Dates
قم بتنزيل ملفات الامتداد Waffle Due Dates بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chrome extension that adds "due date" recognition to waffle.io. Simply add text to cards/issues like "Due 9/1 - Do a thing" or "Issue name blah blah (due 10/12/2016)" Cards with due dates in them have: - Get a special label indicating how far until they're due - If the card is due "soon" (defined as within 3 days) it gets highlighted with a clock icon. - Overdue cards get a warning icon - Column headers get a clock icon if there are any cards due soon within the column. Source available at https://github.com/industrydive/waffle.io-due-dates
معلومات أساسية عن التمديد
الاسم | Waffle Due Dates |
ID | ofhomfjdmacholiopnkhaeahibadabbk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/waffle-due-dates/ofhomfjdmacholiopnkhaeahibadabbk |
الوصف | Improves Waffle.io with recognition for due dates |
حجم الملف | 83.12 KB |
عدد التثبيتات | 31 |
النسخة الحالية | 0.1.4 |
آخر تحديث | 2016-09-27 |
تاريخ النشر | 2016-09-27 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Eli / Industry Dive |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Waffle Due Dates", "description": "Improves Waffle.io with recognition for due dates", "version": "0.1.4", "permissions": [ "https:\/\/waffle.io\/*", "http:\/\/waffle.io\/*" ], "icons": { "128": "waffleclock128.png", "48": "waffleclock48.png", "16": "waffleclock16.png" }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/jquery-3.1.0.min.js", "js\/moment.min.js", "js\/content.js" ], "matches": [ "https:\/\/waffle.io\/*", "http:\/\/waffle.io\/*" ], "run_at": "document_start" } ] } |