Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
Hvad er Full screen card view for Trello?
Full screen card view for Trello er en Chrome-udvidelse udviklet af https://justin.kelly.org.au, og dens hovedfunktion er "Makes the card and edit window in Trello.com full screen".
Udvidelsesskærmbilleder
Download Full screen card view for Trello-udvidelses-CRX-fil
Download Full screen card view for Trello-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
Officiel URL | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Beskrivelse | Makes the card and edit window in Trello.com full screen |
Filstørrelse | 5.92 KB |
Antal Installationer | 1,820 |
Nuværende Version | 3 |
Senest Opdateret | 2013-08-09 |
Udgivelsesdato | 2013-08-08 |
Bedømmelse | 4.38/5 Samlet 16 Bedømmelser |
Udvikler | https://justin.kelly.org.au |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/justinkelly/trello_big_edit |
Hjælpeside-URL | https://github.com/justinkelly/trello_big_edit/issues |
Understøttede Sprog | 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" ] } ] } |