UMD Schedule of Classes Professor Rating
This extension will add professor ratings to each section in the UMD Schedule of Classes.
UMD Schedule of Classes Professor Rating क्या है?
UMD Schedule of Classes Professor Rating a.mccourt60 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will add professor ratings to each section in the UMD Schedule of Classes."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UMD Schedule of Classes Professor Rating एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | UMD Schedule of Classes Professor Rating |
ID | jghbeiknpbpkicbeckkkdpalgdaeehmd |
आधिकारिक URL | https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd |
विवरण | This extension will add professor ratings to each section in the UMD Schedule of Classes. |
फ़ाइल का आकार | 1.16 MB |
स्थापना संख्या | 41 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2017-12-11 |
प्रकाशन तिथि | 2017-12-10 |
डेवलपर | a.mccourt60 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://amccourt.github.io/ |
समर्थित भाषाएँ | 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" ] } ] } |