Learning Suite Mod

This extension modifies the Learning Suite page to make it more friendly.

Co to jest Learning Suite Mod?

Learning Suite Mod to rozszerzenie Chrome opracowane przez BYU Coding Ninjas, a jego główną funkcją jest „This extension modifies the Learning Suite page to make it more friendly.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Learning Suite Mod

Pobierz pliki rozszerzeń Learning Suite Mod w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Tired of those empty drop-down boxes on Learning Suite?
Wish you didn't have to go back to the home page to switch classes?
This extension adds course links to every page of BYU's Learning Suite.

This is by no means a permanent solution, but it will work for now.
If you find any bugs or have ideas please let me know in the feedback section.                    

Podstawowe informacje o rozszerzeniu

Nazwa Learning Suite Mod Learning Suite Mod
ID mmhploinnaiicaipbigobhhbegichkcf
Oficjalny URL https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf
Opis This extension modifies the Learning Suite page to make it more friendly.
Rozmiar pliku 6.23 KB
Liczba instalacji 20
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2014-02-14
Data Publikacji 2014-02-13
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper BYU Coding Ninjas
Typ Płatności free
Strona Rozszerzenia https://groups.google.com/forum/#!forum/byu-coding-ninjas
Adres URL Strony Pomocy https://groups.google.com/forum/#!forum/byu-coding-ninjas
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Learning Suite Mod",
    "description": "This extension modifies the Learning Suite page to make it more friendly.",
    "version": "1.2",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/learningsuite.byu.edu\/student,top*"
            ],
            "js": [
                "save.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/learningsuite.byu.edu\/*"
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_end"
        }
    ]
}