Full screen card view for Trello

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

Co to jest Full screen card view for Trello?

Full screen card view for Trello to rozszerzenie Chrome opracowane przez https://justin.kelly.org.au, a jego główną funkcją jest „Makes the card and edit window in Trello.com full screen”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Full screen card view for Trello

Pobierz pliki rozszerzeń Full screen card view for Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
Oficjalny URL https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Opis Makes the card and edit window in Trello.com full screen
Rozmiar pliku 5.92 KB
Liczba instalacji 1,820
Aktualna Wersja 3
Ostatnia Aktualizacja 2013-08-09
Data Publikacji 2013-08-08
Ocena 4.38/5 Łącznie 16 Oceny
Deweloper https://justin.kelly.org.au
Typ Płatności free
Strona Rozszerzenia https://github.com/justinkelly/trello_big_edit
Adres URL Strony Pomocy https://github.com/justinkelly/trello_big_edit/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}