Full screen card view for Trello

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

Vad är Full screen card view for Trello?

Full screen card view for Trello är en Chrome-tillägg utvecklad av https://justin.kelly.org.au, och dess huvudfunktion är "Makes the card and edit window in Trello.com full screen".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Full screen card view for Trello-förlängningens CRX-fil

Ladda ner Full screen card view for Trello-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
Officiell webbadress https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Beskrivning Makes the card and edit window in Trello.com full screen
Filstorlek 5.92 KB
Antal Installationer 1,820
Aktuell Version 3
Senast Uppdaterad 2013-08-09
Publiceringsdatum 2013-08-08
Betyg 4.38/5 Totalt 16 Betyg
Utvecklare https://justin.kelly.org.au
Betalningssätt free
Tilläggswebbplats https://github.com/justinkelly/trello_big_edit
Hjälpsida URL https://github.com/justinkelly/trello_big_edit/issues
Stödda Språk 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"
            ]
        }
    ]
}