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」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
} | |