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 - это расширение Chrome, разработанное TheLegendaryBanana, и его основная функция - "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.".
Снимки экрана расширения
Скачать файл CRX расширения UofT Timetable Rating Embedder
Скачайте файлы расширений UofT Timetable Rating Embedder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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'" } |