Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
Wat is Learning Suite Mod?
Learning Suite Mod is een Chrome-extensie ontwikkeld door BYU Coding Ninjas, en de belangrijkste functie is "This extension modifies the Learning Suite page to make it more friendly.".
Extensie Screenshots
Download het CRX-bestand van de extensie Learning Suite Mod
Download Learning Suite Mod-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
Officiële URL | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Beschrijving | This extension modifies the Learning Suite page to make it more friendly. |
Bestandsgrootte | 6.23 KB |
Aantal Installaties | 20 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2014-02-14 |
Publicatiedatum | 2014-02-13 |
Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
Ontwikkelaar | BYU Coding Ninjas |
Betalingswijze | free |
Extensiewebsite | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Help Pagina-URL | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Ondersteunde Talen | 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" } ] } |