Better Brightspace

Changes the Brightspace homepage to focus on current courses.

Что такое Better Brightspace?

Better Brightspace - это расширение Chrome, разработанное 2matto, и его основная функция - "Changes the Brightspace homepage to focus on current courses.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Better Brightspace

Скачайте файлы расширений Better Brightspace в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название Better Brightspace Better Brightspace
ID hgfcmgimdjhecjhmhemcdibgfcnhmmgd
Официальный URL https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd
Описание Changes the Brightspace homepage to focus on current courses.
Размер файла 47.41 KB
Количество установок 45
Текущая Версия 0.0.0.6
Последнее Обновление 2019-01-21
Дата публикации 2019-01-21
Рейтинг 1.00/5 Всего 1 оценок
Разработчик 2matto
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}