Waffle Due Dates

Improves Waffle.io with recognition for due dates

什麼是Waffle Due Dates?

Waffle Due Dates是由Eli / Industry Dive開發的Chrome擴展程式,該擴展的主要功能是“Improves Waffle.io with recognition for due dates”。

擴展截圖

screenshot

下載Waffle Due Dates擴展crx文件

下載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
官方網址 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"
        }
    ]
}