UofT Timetable Rating Embedder
A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
UofT Timetable Rating Embedder là gì?
UofT Timetable Rating Embedder là một tiện ích mở rộng Chrome được phát triển bởi TheLegendaryBanana, và tính năng chính của nó là "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng UofT Timetable Rating Embedder
Tải xuống các tệp mở rộng UofT Timetable Rating Embedder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | UofT Timetable Rating Embedder |
ID | ihcpidochhfbfibmdbogigfpnpaceeok |
URL Chính Thức | https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok |
Mô tả | A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder. |
Kích Thước Tệp | 32.65 KB |
Số Lần Cài Đặt | 55 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2017-07-10 |
Ngày Phát Hành | 2017-07-10 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | TheLegendaryBanana |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |