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 https://justin.kelly.org.au द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes the card and edit window in Trello.com full screen"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Full screen card view for Trello एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}