Trello Business Style

Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards

Cos'è Trello Business Style?

Trello Business Style è un'estensione di Chrome sviluppata da Leonardo C Bottaro, e la sua funzione principale è "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Trello Business Style

Scarica i file di estensione Trello Business Style in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds a button on the top right corner inside your boards, click it to make the cards more readable and less crowded.

Changelog:

v1.2.1
Fixed Bug when changing boards
Tweaks to the style

v1.2.0
Updated extension to better use new Trello features
Added persistent state

v1.1.0
Bug fixes

v1.0.0
Initial Release

Make it better! Contribute on GitHub! https://github.com/leocb/trello-businessStyle                    

Informazioni di Base sull'Estensione

Nome Trello Business Style Trello Business Style
ID knkibcjejmdcepoomodabefjobmajoco
URL Ufficiale https://chromewebstore.google.com/detail/trello-business-style/knkibcjejmdcepoomodabefjobmajoco
Descrizione Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards
Dimensione del File 2.22 MB
Conteggio Installazioni 297
Versione Corrente 1.2.1
Ultimo Aggiornamento 2018-03-28
Data di Pubblicazione 2018-03-28
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Leonardo C Bottaro
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/leocb/trello-businessStyle
URL della Pagina di Aiuto https://github.com/leocb/trello-businessStyle/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Business Style",
    "short_name": "trello-Business-Style",
    "description": "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards",
    "version": "1.2.1",
    "icons": {
        "16": "images\/icon-16.png",
        "64": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/trello.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "css": [
                "content-styles.css"
            ]
        }
    ]
}