Trello Prime
Use Trello with some cool features.
O que é Trello Prime?
Trello Prime é uma extensão do Chrome desenvolvida por thearchitgarg, e sua principal característica é "Use Trello with some cool features.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello Prime
Baixe arquivos de extensão Trello Prime 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
- You will be able to see the card ID when a card is open (HOT FEATURE) - Change your custom background color w/o changing color for all the teammates. - You can see the trello card short id on every card (which you can use to refrence cards in standup meetings or to name your git branches) - Now you will be able to see the label text on each card. - Turn ON/OFF any of these features anytime. - Cool UI & lightweight plugin(screenshots attached) - Results in increased productivity and will help to name your branches. More cool features coming soon so add this to your chrome so that it will be automatically updated whenever a new version will arrive. Write in the comments if you would like to have any new feature or you face any issue, I will try to respond as quickly as possible.
Informações Básicas da Extensão
Nome | Trello Prime |
ID | mkphpfbogfpojbbmbdhfcboleippkffh |
URL Oficial | https://chromewebstore.google.com/detail/trello-prime/mkphpfbogfpojbbmbdhfcboleippkffh |
Descrição | Use Trello with some cool features. |
Tamanho do Arquivo | 149 KB |
Contagem de Instalações | 150 |
Versão Atual | 1.0.2 |
Última Atualização | 2019-08-18 |
Data de Publicação | 2019-08-18 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | thearchitgarg |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Prime", "short_name": "Trel-Prime", "description": "Use Trello with some cool features.", "version": "1.0.2", "browser_action": { "default_icon": "assets\/logo.png", "default_popup": "popup.html", "default_title": "Trello Prime" }, "icons": { "128": "assets\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.trello.com\/*" ], "css": [ "content.css" ], "js": [ "scripts\/content_script.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "*:\/\/trello.com\/*", "tabs", "storage" ] } |