Brightspace Improvements

Improves myCourses/desire2learn websites

Τι είναι το Brightspace Improvements;

Το Brightspace Improvements είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον notchjobs, και η κύρια λειτουργία του είναι "Improves myCourses/desire2learn websites".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Brightspace Improvements

Λήψη αρχείων επέκτασης Brightspace Improvements σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}