Styling Trello

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

Cos'è Styling Trello?

Styling Trello è un'estensione di Chrome sviluppata da https://kainoto.com, e la sua funzione principale è "This extension makes certain Trello forms more readable and therefore useful.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Styling Trello

Scarica i file di estensione Styling Trello 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
URL Ufficiale https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
Descrizione This extension makes certain Trello forms more readable and therefore useful.
Dimensione del File 94.38 KB
Conteggio Installazioni 154
Versione Corrente 1.1
Ultimo Aggiornamento 2016-04-30
Data di Pubblicazione 2016-04-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://kainoto.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}