Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
What is Full screen card view for Trello?
Full screen card view for Trello is a Chrome extension developed by https://justin.kelly.org.au, and its main feature is "Makes the card and edit window in Trello.com full screen".
Extension Screenshots
Download Full screen card view for Trello Extension CRX File
Download Full screen card view for Trello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
Official URL | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Description | Makes the card and edit window in Trello.com full screen |
File Size | 5.92 KB |
Installation Count | 1,820 |
Current Version | 3 |
Last Updated | 2013-08-09 |
Publish Date | 2013-08-08 |
Rating | 4.38/5 Total 16 Ratings |
Developer | https://justin.kelly.org.au |
Payment Type | free |
Extension Website | https://github.com/justinkelly/trello_big_edit |
Help Page URL | https://github.com/justinkelly/trello_big_edit/issues |
Supported Languages | 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" ] } ] } |