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.”。
扩展截图
下载Better Brightspace扩展crx文件
下载Better Brightspace扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                                             扩展基本信息
| 名称 |   |  
| 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
}  |  |