Full screen card view for Trello

Makes the card and edit window in Trello.com full screen

Cos'è Full screen card view for Trello?

Full screen card view for Trello è un'estensione di Chrome sviluppata da https://justin.kelly.org.au, e la sua funzione principale è "Makes the card and edit window in Trello.com full screen".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Full screen card view for Trello

Scarica i file di estensione Full screen card view for 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

                        Converts the small Trello card view/edit windows to be full screen height and width.

If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use.

To fix this I whipped up a quick chrome extension to make the card edit window full screen, 

More info:
* http://blog.justin.kelly.org.au/trello-big-edit/

Code on GitHub:
* https://github.com/justinkelly/trello_big_edit                    

Informazioni di Base sull'Estensione

Nome Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
URL Ufficiale https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Descrizione Makes the card and edit window in Trello.com full screen
Dimensione del File 5.92 KB
Conteggio Installazioni 1,820
Versione Corrente 3
Ultimo Aggiornamento 2013-08-09
Data di Pubblicazione 2013-08-08
Valutazione 4.38/5 Totale 16 Valutazioni
Sviluppatore https://justin.kelly.org.au
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/justinkelly/trello_big_edit
URL della Pagina di Aiuto https://github.com/justinkelly/trello_big_edit/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full screen card view for Trello",
    "version": "3",
    "manifest_version": 2,
    "description": "Makes the card and  edit window in Trello.com full screen",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "trello_big_edit.user.js"
            ]
        }
    ]
}