Trello No Strikethrough
Removes the strikethrough for completed tasks on Trello
O que é Trello No Strikethrough?
Trello No Strikethrough é uma extensão do Chrome desenvolvida por paradite, e sua principal característica é "Removes the strikethrough for completed tasks on Trello".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello No Strikethrough
Baixe arquivos de extensão Trello No Strikethrough 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
Trello strikethrough for completed tasks by default can be annoying. This extensions removes Trello strikethrough for completed tasks in checklists. Source code: https://github.com/paradite/trello-no-strikethrough
Informações Básicas da Extensão
Nome | Trello No Strikethrough |
ID | jalipphihlpncggkbgmhdanibebphhkb |
URL Oficial | https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb |
Descrição | Removes the strikethrough for completed tasks on Trello |
Tamanho do Arquivo | 7.12 KB |
Contagem de Instalações | 258 |
Versão Atual | 1.0.2 |
Última Atualização | 2022-10-16 |
Data de Publicação | 2017-04-30 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | paradite |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/paradite/trello-no-strikethrough |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello No Strikethrough", "description": "Removes the strikethrough for completed tasks on Trello", "icons": { "128": "icon.png" }, "version": "1.0.2", "background": { "page": "popup.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Trello No Strikethrough" }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/*" ], "css": [ "mystyles.css" ] } ], "permissions": [ "https:\/\/trello.com\/*" ] } |