Waffle Due Dates
Improves Waffle.io with recognition for due dates
O que é Waffle Due Dates?
Waffle Due Dates é uma extensão do Chrome desenvolvida por Eli / Industry Dive, e sua principal característica é "Improves Waffle.io with recognition for due dates".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Waffle Due Dates
Baixe arquivos de extensão Waffle Due Dates no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Waffle Due Dates |
ID | ofhomfjdmacholiopnkhaeahibadabbk |
URL Oficial | https://chromewebstore.google.com/detail/waffle-due-dates/ofhomfjdmacholiopnkhaeahibadabbk |
Descrição | Improves Waffle.io with recognition for due dates |
Tamanho do Arquivo | 83.12 KB |
Contagem de Instalações | 31 |
Versão Atual | 0.1.4 |
Última Atualização | 2016-09-27 |
Data de Publicação | 2016-09-27 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Eli / Industry Dive |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |