Brightspace Improvements

Improves myCourses/desire2learn websites

Brightspace Improvements란 무엇입니까?

Brightspace Improvements은(는) notchjobs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves myCourses/desire2learn websites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Brightspace Improvements 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Extension for Brightspace's myCourses/Desire2Learn websites

Note: Requires all websites permission to account for the various myCourses/Desire2Learn web domains

Login Page
-Autofocus on login button
-Autologin option

General
-Only shows currently enrolled courses under "select a course" drop down menu

Home Page
-Removes unnecessary sections and content

Content Page
-Option to open links in pop out window (instead of redirecting the current page)
-Content Menu's position is fixed (won't scroll with page)

Popout content
-Fixed popouts not resizing to window size
-Removes the header in popout content allowing for more content to be displayed on screen

Discussions
-Hides quoted content in posts                    

확장 프로그램 기본 정보

이름 Brightspace Improvements Brightspace Improvements
ID ngplfhblfejgjnaapcajgiccnapfhchi
공식 URL https://chromewebstore.google.com/detail/brightspace-improvements/ngplfhblfejgjnaapcajgiccnapfhchi
설명 Improves myCourses/desire2learn websites
파일 크기 44.13 KB
설치 횟수 646
현재 버전 3.2.8
최근 업데이트 2019-03-03
출시 날짜 2019-03-02
평점 4.00/5 총 3 개의 평점
개발자 notchjobs
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brightspace Improvements",
    "description": "Improves myCourses\/desire2learn websites",
    "version": "3.2.8",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/mycourses.rit.edu\/*"
    ],
    "optional_permissions": [
        "https:\/\/*\/d2l\/*"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/d2l\/loginh\/*"
            ],
            "js": [
                "scripts\/login.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/*"
            ],
            "exclude_matches": [
                "https:\/\/*\/d2l\/le\/content\/*\/fullscreen\/*"
            ],
            "js": [
                "scripts\/base.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/home"
            ],
            "css": [
                "styles\/home.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/home\/*"
            ],
            "css": [
                "styles\/course.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/le\/content\/*\/Home*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/le\/content\/*\/fullscreen\/*"
            ],
            "js": [
                "scripts\/popout-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/d2l\/le\/*\/discussions\/*"
            ],
            "js": [
                "lib\/jquery.1.6.1.min.js",
                "scripts\/discussions.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "images\/icon16.png",
        "default_popup": "popup.html"
    }
}