Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
Hvad er Learning Suite Mod?
Learning Suite Mod er en Chrome-udvidelse udviklet af BYU Coding Ninjas, og dens hovedfunktion er "This extension modifies the Learning Suite page to make it more friendly.".
Udvidelsesskærmbilleder
Download Learning Suite Mod-udvidelses-CRX-fil
Download Learning Suite Mod-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
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
Officiel URL | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Beskrivelse | This extension modifies the Learning Suite page to make it more friendly. |
Filstørrelse | 6.23 KB |
Antal Installationer | 20 |
Nuværende Version | 1.2 |
Senest Opdateret | 2014-02-14 |
Udgivelsesdato | 2014-02-13 |
Bedømmelse | 5.00/5 Samlet 7 Bedømmelser |
Udvikler | BYU Coding Ninjas |
Betalingsmetode | free |
Udvidelseswebsted | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Hjælpeside-URL | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Understøttede Sprog | 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" } ] } |