Learning Suite Mod

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

Co je Learning Suite Mod?

Learning Suite Mod je rozšíření Chrome vyvinuté BYU Coding Ninjas, a jeho hlavní funkcí je „This extension modifies the Learning Suite page to make it more friendly.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Learning Suite Mod

Stáhněte si soubory rozšíření Learning Suite Mod ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Learning Suite Mod Learning Suite Mod
ID mmhploinnaiicaipbigobhhbegichkcf
Oficiální URL https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf
Popis This extension modifies the Learning Suite page to make it more friendly.
Velikost souboru 6.23 KB
Počet instalací 20
Aktuální Verze 1.2
Poslední Aktualizace 2014-02-14
Datum Vydání 2014-02-13
Hodnocení 5.00/5 Celkem 7 Hodnocení
Vývojář BYU Coding Ninjas
Typ Platby free
Webové stránky Rozšíření https://groups.google.com/forum/#!forum/byu-coding-ninjas
URL Stránky Nápovědy https://groups.google.com/forum/#!forum/byu-coding-ninjas
Podporované Jazyky 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"
        }
    ]
}