Trello My Cards Prioritization
My Cards prioritization.
O que é Trello My Cards Prioritization?
Trello My Cards Prioritization é uma extensão do Chrome desenvolvida por https://www.netmagnet.cz, e sua principal característica é "My Cards prioritization.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello My Cards Prioritization
Baixe arquivos de extensão Trello My Cards Prioritization 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
Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list: Ideas: light transparency Todo: without change Doing: highlighted To Deploy: highlighted Done: hidden Postponed: heavy transparency Cancelled: hidden These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden. Updates in v1.0.0: - correctly detect page and content change so this extension works again :) Updates in v1.1.1: - Add "To Deploy" list name - Fix css class names
Informações Básicas da Extensão
Nome | Trello My Cards Prioritization |
ID | bpbkpegngbkknmghhjbeekjdphjhkdif |
URL Oficial | https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif |
Descrição | My Cards prioritization. |
Tamanho do Arquivo | 53.05 KB |
Contagem de Instalações | 19 |
Versão Atual | 1.1.1 |
Última Atualização | 2019-12-11 |
Data de Publicação | 2019-12-11 |
Desenvolvedor | https://www.netmagnet.cz |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.netmagnet.cz |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello My Cards Prioritization", "short_name": "Trello My Cards Prio", "description": "My Cards prioritization.", "version": "1.1.1", "author": "Tomas Kouba", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/trello.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap.js", "mycards.js" ] } ], "web_accessible_resources": [ "style.css" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |