Background Colors Cards for Trello
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…
O que é Background Colors Cards for Trello?
Background Colors Cards for Trello é uma extensão do Chrome desenvolvida por nikey.es, e sua principal característica é "When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Background Colors Cards for Trello
Baixe arquivos de extensão Background Colors Cards for Trello 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
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards. The extension get the color from the card label.
Informações Básicas da Extensão
Nome | Background Colors Cards for Trello |
ID | gbpnfdnpkiogmaicmknplgedbcjndaaf |
URL Oficial | https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf |
Descrição | When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.… |
Tamanho do Arquivo | 50.04 KB |
Contagem de Instalações | 1,297 |
Versão Atual | 0.2 |
Última Atualização | 2014-03-21 |
Data de Publicação | 2014-03-21 |
Classificação | 3.20/5 Total de 5 Avaliações |
Desenvolvedor | nikey.es |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Background Colors Cards for Trello", "short_name": "Back Trello", "description": "", "version": "0.2", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "iconBackground16.png", "48": "iconBackground48.png", "128": "iconBackground128.png" }, "page_action": { "default_icon": "iconBackground16.png", "default_title": "Click to Apply Background Colors Cards.\nClick Again to Clean Background Colors Cards." }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "jquery.1.11.0.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*", "declarativeContent" ] } |