UMD Schedule of Classes Professor Rating

This extension will add professor ratings to each section in the UMD Schedule of Classes.

Cos'è UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating è un'estensione di Chrome sviluppata da a.mccourt60, e la sua funzione principale è "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione UMD Schedule of Classes Professor Rating

Scarica i file di estensione UMD Schedule of Classes Professor Rating in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension is a personal side project to practice JQuery and Javascript.  This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor.  This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.                    

Informazioni di Base sull'Estensione

Nome UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
URL Ufficiale https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Descrizione This extension will add professor ratings to each section in the UMD Schedule of Classes.
Dimensione del File 1.16 MB
Conteggio Installazioni 41
Versione Corrente 1.1
Ultimo Aggiornamento 2017-12-11
Data di Pubblicazione 2017-12-10
Sviluppatore a.mccourt60
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://amccourt.github.io/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD Schedule of Classes Professor Rating",
    "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "img\/testudo.png",
        "default_title": "UMD Professor Rating"
    },
    "permissions": [
        "activeTab",
        "https:\/\/search.mtvnservices.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ntst.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js"
            ]
        }
    ]
}