Waffle Due Dates
Improves Waffle.io with recognition for due dates
Was ist Waffle Due Dates?
Waffle Due Dates ist eine Chrome-Erweiterung, die von Eli / Industry Dive entwickelt wurde, und ihr Hauptmerkmal ist "Improves Waffle.io with recognition for due dates".
Erweiterungsscreenshots
Waffle Due Dates-Erweiterungs-CRX-Datei herunterladen
Laden Sie Waffle Due Dates-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ofhomfjdmacholiopnkhaeahibadabbk |
| Offizielle URL | https://chromewebstore.google.com/detail/waffle-due-dates/ofhomfjdmacholiopnkhaeahibadabbk |
| Beschreibung | Improves Waffle.io with recognition for due dates |
| Dateigröße | 83.12 KB |
| Installationsanzahl | 31 |
| Aktuelle Version | 0.1.4 |
| Letztes Update | 2016-09-27 |
| Veröffentlichungsdatum | 2016-09-27 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Eli / Industry Dive |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |