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