Learning Suite Mod

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

What is Learning Suite Mod?

Learning Suite Mod is a Chrome extension developed by BYU Coding Ninjas, and its main feature is "This extension modifies the Learning Suite page to make it more friendly.".

Extension Screenshots

screenshot
screenshot

Download Learning Suite Mod Extension CRX File

Download Learning Suite Mod extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Learning Suite Mod Learning Suite Mod
ID mmhploinnaiicaipbigobhhbegichkcf
Official URL https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf
Description This extension modifies the Learning Suite page to make it more friendly.
File Size 6.23 KB
Installation Count 20
Current Version 1.2
Last Updated 2014-02-14
Publish Date 2014-02-13
Rating 5.00/5 Total 7 Ratings
Developer BYU Coding Ninjas
Payment Type free
Extension Website https://groups.google.com/forum/#!forum/byu-coding-ninjas
Help Page URL https://groups.google.com/forum/#!forum/byu-coding-ninjas
Supported Languages 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"
        }
    ]
}