Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Apa itu Trello Auto Scroll?
Trello Auto Scroll adalah ekstensi Chrome yang dikembangkan oleh dashboard-team, dan fitur utamanya adalah "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Trello Auto Scroll
Unduh file ekstensi Trello Auto Scroll 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
This extension allow your Trello scroll automatically until the last card and back to the first card as a loop. It's extremely useful for using Trello as a slide show board. Developed by: Willian Keller Diego Ocko Martins
Informasi Dasar Ekstensi
Nama | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
URL Resmi | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
Deskripsi | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
Ukuran File | 78.89 KB |
Jumlah Instalasi | 126 |
Versi Saat Ini | 1.7 |
Terakhir Diperbarui | 2017-11-06 |
Tanggal Publikasi | 2017-11-06 |
Penilaian | 1.00/5 Total 1 Penilaian |
Pengembang | dashboard-team |
Tipe Pembayaran | free |
Bahasa yang Didukung | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.7", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/utils\/storage.min.js", "src\/utils\/runtime.min.js", "src\/vendor\/jquery.min.js", "src\/main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "src\/options.html", "chrome_style": false }, "icons": { "128": "src\/icons\/icon.png" }, "browser_action": { "default_icon": "src\/icons\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Auto Scroll" }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |