Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Wat is Better Brightspace?
Better Brightspace is een Chrome-extensie ontwikkeld door 2matto, en de belangrijkste functie is "Changes the Brightspace homepage to focus on current courses.".
Extensie Screenshots
Download het CRX-bestand van de extensie Better Brightspace
Download Better Brightspace-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
Basisinformatie over de Extensie
| Naam | |
| ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
| Officiële URL | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
| Beschrijving | Changes the Brightspace homepage to focus on current courses. |
| Bestandsgrootte | 47.41 KB |
| Aantal Installaties | 45 |
| Huidige Versie | 0.0.0.6 |
| Laatst Bijgewerkt | 2019-01-21 |
| Publicatiedatum | 2019-01-21 |
| Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | 2matto |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |