UofT Timetable Rating Embedder
A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
UofT Timetable Rating Embedder क्या है?
UofT Timetable Rating Embedder TheLegendaryBanana द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UofT Timetable Rating Embedder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This chrome extension gets the ratings from www.ratemyprofessors.com for all the instructors that you are currently searching courses for on https://timetable.iit.artsci.utoronto.ca/ so you don't have to. You can now leisurely search for the best professors each class has to offer, if they have an existing review. To use simply click the acorn after you search for any course(s) on the ArtSci course finder.
एक्सटेंशन की मूल जानकारी
नाम | UofT Timetable Rating Embedder |
ID | ihcpidochhfbfibmdbogigfpnpaceeok |
आधिकारिक URL | https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok |
विवरण | A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder. |
फ़ाइल का आकार | 32.65 KB |
स्थापना संख्या | 55 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2017-07-10 |
प्रकाशन तिथि | 2017-07-10 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | TheLegendaryBanana |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UofT Timetable Rating Embedder", "version": "1.0.2", "description": "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "page_action": { "default_icon": "icon16.png", "default_title": "RMP Rating Embedder" }, "background": { "scripts": [ "eventPage.js", "tracker.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/timetable.iit.artsci.utoronto.ca\/" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "https:\/\/timetable.iit.artsci.utoronto.ca\/", "http:\/\/www.ratemyprofessors.com\/*" ], "web_accessible_resources": [ "cold-chili.png", "new-hot-chili.png" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |