UMD Schedule of Classes Professor Rating

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

Wat is UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating is een Chrome-extensie ontwikkeld door a.mccourt60, en de belangrijkste functie is "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie UMD Schedule of Classes Professor Rating

Download UMD Schedule of Classes Professor Rating-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
Officiële URL https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Beschrijving This extension will add professor ratings to each section in the UMD Schedule of Classes.
Bestandsgrootte 1.16 MB
Aantal Installaties 41
Huidige Versie 1.1
Laatst Bijgewerkt 2017-12-11
Publicatiedatum 2017-12-10
Ontwikkelaar a.mccourt60
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://amccourt.github.io/
Ondersteunde Talen 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"
            ]
        }
    ]
}