Trello Card Aging
Provides some features for Trello, related with the card activity
O que é Trello Card Aging?
Trello Card Aging é uma extensão do Chrome desenvolvida por fernand-o, e sua principal característica é "Provides some features for Trello, related with the card activity".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello Card Aging
Baixe arquivos de extensão Trello Card Aging 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
Provides some features for Trello, related with the card activity: - Last activity Creates an indicator at the bottom of the card, that shows the time difference between now and the last activity of the card. - Card age Creates an indicator at the bottom of the card, that shows the time difference between now and the card creation. - Aging effect The aging effect is the same as the one provided from the Card Aging power-up, except for one detail: In the official power up, the card aging is removed if someone just change the card position (drag and drop) inside a list. This extension considers the last activity of the card, what might be a comment, attachment, anything who left a log inside the card. The aging is applied in 3 states, at 7, 14, or 28 days without any action in the card. This project is open-source, feel free to contribute or make a suggestion: https://github.com/fernand-o/trello-card-aging
Informações Básicas da Extensão
Nome | Trello Card Aging |
ID | eldafhhjhnfgkhpnicalopgocdbehkgj |
URL Oficial | https://chromewebstore.google.com/detail/trello-card-aging/eldafhhjhnfgkhpnicalopgocdbehkgj |
Descrição | Provides some features for Trello, related with the card activity |
Tamanho do Arquivo | 111 KB |
Contagem de Instalações | 908 |
Versão Atual | 1.8 |
Última Atualização | 2018-06-01 |
Data de Publicação | 2018-06-01 |
Classificação | 5.00/5 Total de 8 Avaliações |
Desenvolvedor | fernand-o |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/fernand-o/trello-card-aging |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Card Aging", "version": "1.8", "description": "Provides some features for Trello, related with the card activity", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "jquery-3.1.0.js", "logic.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "icons": { "64": "icon64.png", "128": "icon128.png", "256": "icon256.png" }, "browser_action": { "default_icon": "icon64.png", "default_popup": "options.html" }, "author": "fernand-o", "background": { "scripts": [ "jquery-3.1.0.js", "background.js" ] }, "permissions": [ "tabs", "storage", "https:\/\/trello.com\/b\/*" ] } |