Full screen card view for Trello

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

Was ist Full screen card view for Trello?

Full screen card view for Trello ist eine Chrome-Erweiterung, die von https://justin.kelly.org.au entwickelt wurde, und ihr Hauptmerkmal ist "Makes the card and edit window in Trello.com full screen".

Erweiterungsscreenshots

screenshot
screenshot

Full screen card view for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Full screen card view for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
Offizielle URL https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Beschreibung Makes the card and edit window in Trello.com full screen
Dateigröße 5.92 KB
Installationsanzahl 1,820
Aktuelle Version 3
Letztes Update 2013-08-09
Veröffentlichungsdatum 2013-08-08
Bewertung 4.38/5 Insgesamt 16 Bewertungen
Entwickler https://justin.kelly.org.au
Zahlungsart free
Erweiterungswebsite https://github.com/justinkelly/trello_big_edit
Hilfeseite URL https://github.com/justinkelly/trello_big_edit/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}