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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Waffle Due Dates

ดาวน์โหลดไฟล์ส่วนขยาย Waffle Due Dates ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
        }
    ]
}