Full screen card view for Trello

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

Τι είναι το Full screen card view for Trello;

Το Full screen card view for Trello είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://justin.kelly.org.au, και η κύρια λειτουργία του είναι "Makes the card and edit window in Trello.com full screen".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Full screen card view for Trello

Λήψη αρχείων επέκτασης Full screen card view for Trello σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
Επίσημο URL https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Περιγραφή Makes the card and edit window in Trello.com full screen
Μέγεθος Αρχείου 5.92 KB
Αριθμός Εγκαταστάσεων 1,820
Τρέχουσα Έκδοση 3
Τελευταία Ενημέρωση 2013-08-09
Ημερομηνία Δημοσίευσης 2013-08-08
Αξιολόγηση 4.38/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής https://justin.kelly.org.au
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/justinkelly/trello_big_edit
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/justinkelly/trello_big_edit/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}