Waffle Due Dates
Improves Waffle.io with recognition for due dates
Waffle Due Dates क्या है?
Waffle Due Dates Eli / Industry Dive द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves Waffle.io with recognition for due dates"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Waffle Due Dates एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } ] } |