Better Brightspace
Changes the Brightspace homepage to focus on current courses.
O que é Better Brightspace?
Better Brightspace é uma extensão do Chrome desenvolvida por 2matto, e sua principal característica é "Changes the Brightspace homepage to focus on current courses.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Better Brightspace
Baixe arquivos de extensão Better Brightspace 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
Informações Básicas da Extensão
Nome | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
URL Oficial | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
Descrição | Changes the Brightspace homepage to focus on current courses. |
Tamanho do Arquivo | 47.41 KB |
Contagem de Instalações | 45 |
Versão Atual | 0.0.0.6 |
Última Atualização | 2019-01-21 |
Data de Publicação | 2019-01-21 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | 2matto |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Brightspace", "version": "0.0.0.6", "description": "Changes the Brightspace homepage to focus on current courses.", "icons": { "128": "BetterBrightSpace-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.brightspace.com\/*" ], "css": [ "content.css" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/home" ], "js": [ "home-content.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/le\/content\/*\/Home" ], "js": [ "course-content.js" ] } ], "browser_action": { "default_icon": "BetterBrightSpace-128.png" }, "manifest_version": 2 } |