Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
Wat is Full screen card view for Trello?
Full screen card view for Trello is een Chrome-extensie ontwikkeld door https://justin.kelly.org.au, en de belangrijkste functie is "Makes the card and edit window in Trello.com full screen".
Extensie Screenshots
Download het CRX-bestand van de extensie Full screen card view for Trello
Download Full screen card view for Trello-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
Officiële URL | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Beschrijving | Makes the card and edit window in Trello.com full screen |
Bestandsgrootte | 5.92 KB |
Aantal Installaties | 1,820 |
Huidige Versie | 3 |
Laatst Bijgewerkt | 2013-08-09 |
Publicatiedatum | 2013-08-08 |
Beoordeling | 4.38/5 Totaal 16 Beoordelingen |
Ontwikkelaar | https://justin.kelly.org.au |
Betalingswijze | free |
Extensiewebsite | https://github.com/justinkelly/trello_big_edit |
Help Pagina-URL | https://github.com/justinkelly/trello_big_edit/issues |
Ondersteunde Talen | 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" ] } ] } |