Better Brightspace

Changes the Brightspace homepage to focus on current courses.

什麼是Better Brightspace?

Better Brightspace是由2matto開發的Chrome擴展程式,該擴展的主要功能是“Changes the Brightspace homepage to focus on current courses.”。

擴展截圖

screenshot

下載Better Brightspace擴展crx文件

下載Better Brightspace擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Better Brightspace Better Brightspace
ID hgfcmgimdjhecjhmhemcdibgfcnhmmgd
官方網址 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
}