Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
Apa itu Learning Suite Mod?
Learning Suite Mod adalah ekstensi Chrome yang dikembangkan oleh BYU Coding Ninjas, dan fitur utamanya adalah "This extension modifies the Learning Suite page to make it more friendly.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Learning Suite Mod
Unduh file ekstensi Learning Suite Mod 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
Tired of those empty drop-down boxes on Learning Suite? Wish you didn't have to go back to the home page to switch classes? This extension adds course links to every page of BYU's Learning Suite. This is by no means a permanent solution, but it will work for now. If you find any bugs or have ideas please let me know in the feedback section.
Informasi Dasar Ekstensi
Nama | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
URL Resmi | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Deskripsi | This extension modifies the Learning Suite page to make it more friendly. |
Ukuran File | 6.23 KB |
Jumlah Instalasi | 20 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2014-02-14 |
Tanggal Publikasi | 2014-02-13 |
Penilaian | 5.00/5 Total 7 Penilaian |
Pengembang | BYU Coding Ninjas |
Tipe Pembayaran | free |
Situs Ekstensi | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
URL Halaman Bantuan | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learning Suite Mod", "description": "This extension modifies the Learning Suite page to make it more friendly.", "version": "1.2", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/learningsuite.byu.edu\/student,top*" ], "js": [ "save.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/learningsuite.byu.edu\/*" ], "js": [ "load.js" ], "run_at": "document_end" } ] } |