Learning Suite Mod

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

Learning Suite Mod क्या है?

Learning Suite Mod BYU Coding Ninjas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension modifies the Learning Suite page to make it more friendly."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Learning Suite Mod एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Learning Suite Mod Learning Suite Mod
ID mmhploinnaiicaipbigobhhbegichkcf
आधिकारिक URL https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf
विवरण This extension modifies the Learning Suite page to make it more friendly.
फ़ाइल का आकार 6.23 KB
स्थापना संख्या 20
वर्तमान संस्करण 1.2
अंतिम अपडेट 2014-02-14
प्रकाशन तिथि 2014-02-13
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर BYU Coding Ninjas
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://groups.google.com/forum/#!forum/byu-coding-ninjas
सहायता पृष्ठ URL https://groups.google.com/forum/#!forum/byu-coding-ninjas
समर्थित भाषाएँ 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"
        }
    ]
}