Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
Cos'è Learning Suite Mod?
Learning Suite Mod è un'estensione di Chrome sviluppata da BYU Coding Ninjas, e la sua funzione principale è "This extension modifies the Learning Suite page to make it more friendly.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Learning Suite Mod
Scarica i file di estensione Learning Suite Mod in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
URL Ufficiale | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Descrizione | This extension modifies the Learning Suite page to make it more friendly. |
Dimensione del File | 6.23 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2014-02-14 |
Data di Pubblicazione | 2014-02-13 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | BYU Coding Ninjas |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
URL della Pagina di Aiuto | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Lingue Supportate | 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" } ] } |