Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
Co je Full screen card view for Trello?
Full screen card view for Trello je rozšíření Chrome vyvinuté https://justin.kelly.org.au, a jeho hlavní funkcí je „Makes the card and edit window in Trello.com full screen“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Full screen card view for Trello
Stáhněte si soubory rozšíření Full screen card view for Trello ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
Oficiální URL | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Popis | Makes the card and edit window in Trello.com full screen |
Velikost souboru | 5.92 KB |
Počet instalací | 1,820 |
Aktuální Verze | 3 |
Poslední Aktualizace | 2013-08-09 |
Datum Vydání | 2013-08-08 |
Hodnocení | 4.38/5 Celkem 16 Hodnocení |
Vývojář | https://justin.kelly.org.au |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/justinkelly/trello_big_edit |
URL Stránky Nápovědy | https://github.com/justinkelly/trello_big_edit/issues |
Podporované Jazyky | 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" ] } ] } |