Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
O que é Learning Suite Mod?
Learning Suite Mod é uma extensão do Chrome desenvolvida por BYU Coding Ninjas, e sua principal característica é "This extension modifies the Learning Suite page to make it more friendly.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Learning Suite Mod
Baixe arquivos de extensão Learning Suite Mod no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
URL Oficial | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
Descrição | This extension modifies the Learning Suite page to make it more friendly. |
Tamanho do Arquivo | 6.23 KB |
Contagem de Instalações | 20 |
Versão Atual | 1.2 |
Última Atualização | 2014-02-14 |
Data de Publicação | 2014-02-13 |
Classificação | 5.00/5 Total de 7 Avaliações |
Desenvolvedor | BYU Coding Ninjas |
Tipo de Pagamento | free |
Site da Extensão | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
URL da Página de Ajuda | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
Idiomas Suportados | 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" } ] } |