Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Qu'est-ce que Better Brightspace ?
Better Brightspace est une extension Chrome développée par 2matto, et sa fonction principale est "Changes the Brightspace homepage to focus on current courses.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Better Brightspace
Téléchargez les fichiers d'extension Better Brightspace 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
Informations de Base sur l'Extension
Nom | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
URL Officiel | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
Description | Changes the Brightspace homepage to focus on current courses. |
Taille du Fichier | 47.41 KB |
Nombre d'Installations | 45 |
Version Actuelle | 0.0.0.6 |
Dernière Mise à Jour | 2019-01-21 |
Date de Publication | 2019-01-21 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | 2matto |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |