Learning Suite Mod

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

Τι είναι το Learning Suite Mod;

Το Learning Suite Mod είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BYU Coding Ninjas, και η κύρια λειτουργία του είναι "This extension modifies the Learning Suite page to make it more friendly.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Learning Suite Mod

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

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

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