UMD Schedule of Classes Professor Rating

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

Vad är UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating är en Chrome-tillägg utvecklad av a.mccourt60, och dess huvudfunktion är "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner UMD Schedule of Classes Professor Rating-förlängningens CRX-fil

Ladda ner UMD Schedule of Classes Professor Rating-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
Officiell webbadress https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Beskrivning This extension will add professor ratings to each section in the UMD Schedule of Classes.
Filstorlek 1.16 MB
Antal Installationer 41
Aktuell Version 1.1
Senast Uppdaterad 2017-12-11
Publiceringsdatum 2017-12-10
Utvecklare a.mccourt60
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://amccourt.github.io/
Stödda Språk 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"
            ]
        }
    ]
}