Styling Trello

This extension makes certain Trello forms more readable and therefore useful.

O que é Styling Trello?

Styling Trello é uma extensão do Chrome desenvolvida por https://kainoto.com, e sua principal característica é "This extension makes certain Trello forms more readable and therefore useful.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Styling Trello

Baixe arquivos de extensão Styling 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

                        For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window.                    

Informações Básicas da Extensão

Nome Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
URL Oficial https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
Descrição This extension makes certain Trello forms more readable and therefore useful.
Tamanho do Arquivo 94.38 KB
Contagem de Instalações 154
Versão Atual 1.1
Última Atualização 2016-04-30
Data de Publicação 2016-04-30
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://kainoto.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Styling Trello",
    "description": "This extension makes certain Trello forms more readable and therefore useful.",
    "author": "Kainoto",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ],
        "all_frames": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "tstyle.css"
            ],
            "js": [
                "tstyle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Styling (making readable) Trello"
    }
}