Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
Apa itu Full screen card view for Trello?
Full screen card view for Trello adalah ekstensi Chrome yang dikembangkan oleh https://justin.kelly.org.au, dan fitur utamanya adalah "Makes the card and edit window in Trello.com full screen".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Full screen card view for Trello
Unduh file ekstensi Full screen card view for Trello dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
URL Resmi | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Deskripsi | Makes the card and edit window in Trello.com full screen |
Ukuran File | 5.92 KB |
Jumlah Instalasi | 1,820 |
Versi Saat Ini | 3 |
Terakhir Diperbarui | 2013-08-09 |
Tanggal Publikasi | 2013-08-08 |
Penilaian | 4.38/5 Total 16 Penilaian |
Pengembang | https://justin.kelly.org.au |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/justinkelly/trello_big_edit |
URL Halaman Bantuan | https://github.com/justinkelly/trello_big_edit/issues |
Bahasa yang Didukung | 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" ] } ] } |