Full screen card view for Trello

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

Qu'est-ce que Full screen card view for Trello ?

Full screen card view for Trello est une extension Chrome développée par https://justin.kelly.org.au, et sa fonction principale est "Makes the card and edit window in Trello.com full screen".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Full screen card view for Trello

Téléchargez les fichiers d'extension Full screen card view for Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
URL Officiel https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Description Makes the card and edit window in Trello.com full screen
Taille du Fichier 5.92 KB
Nombre d'Installations 1,820
Version Actuelle 3
Dernière Mise à Jour 2013-08-09
Date de Publication 2013-08-08
Évaluation 4.38/5 Total 16 Évaluations
Développeur https://justin.kelly.org.au
Type de Paiement free
Site Web de l'Extension https://github.com/justinkelly/trello_big_edit
URL de la Page d'Aide https://github.com/justinkelly/trello_big_edit/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}