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