Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
Qu'est-ce que Learning Suite Mod ?
Learning Suite Mod est une extension Chrome développée par BYU Coding Ninjas, et sa fonction principale est "This extension modifies the Learning Suite page to make it more friendly.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Learning Suite Mod
Téléchargez les fichiers d'extension Learning Suite Mod au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
URL Officiel | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Description | This extension modifies the Learning Suite page to make it more friendly. |
Taille du Fichier | 6.23 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2014-02-14 |
Date de Publication | 2014-02-13 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | BYU Coding Ninjas |
Type de Paiement | free |
Site Web de l'Extension | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
URL de la Page d'Aide | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Langues Prises en Charge | 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" } ] } |