Better Brightspace
Changes the Brightspace homepage to focus on current courses.
¿Qué es Better Brightspace?
Better Brightspace es una extensión de Chrome desarrollada por 2matto, y su función principal es "Changes the Brightspace homepage to focus on current courses.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Better Brightspace
Descarga archivos de extensión Better Brightspace en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Información Básica de la Extensión
Nombre | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
URL Oficial | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
Descripción | Changes the Brightspace homepage to focus on current courses. |
Tamaño del Archivo | 47.41 KB |
Cantidad de Instalaciones | 45 |
Versión Actual | 0.0.0.6 |
Última Actualización | 2019-01-21 |
Fecha de Publicación | 2019-01-21 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | 2matto |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |