Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Co to jest Better Brightspace?
Better Brightspace to rozszerzenie Chrome opracowane przez 2matto, a jego główną funkcją jest „Changes the Brightspace homepage to focus on current courses.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Brightspace
Pobierz pliki rozszerzeń Better Brightspace w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
Oficjalny URL | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
Opis | Changes the Brightspace homepage to focus on current courses. |
Rozmiar pliku | 47.41 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 0.0.0.6 |
Ostatnia Aktualizacja | 2019-01-21 |
Data Publikacji | 2019-01-21 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | 2matto |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |