RateMyTracks
Get clear insights into professors at the University of Alberta while browsing Beartracks.
RateMyTracks là gì?
RateMyTracks là một tiện ích mở rộng Chrome được phát triển bởi RateMyTracks, và tính năng chính của nó là "Get clear insights into professors at the University of Alberta while browsing Beartracks.".
Ả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 RateMyTracks
Tải xuống các tệp mở rộng RateMyTracks 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
RateMyTracks helps you find the best classes to take when building a schedule on BearTracks. It does this by displaying ratings and linking reviews from Rate My Professors within Beartracks, no other setup required. Features: - Shows the Rate My Professors rating next to each professor's name - Each professor's name becomes a link to their reviews - Button to control when the extension is on - Seamlessly integrated into Beartracks, just install and go - 100% free no payment required RateMyTracks is not endorsed or sponsored by the University of Alberta or Rate My Professors. Developed in Edmonton by Youssef Ismail, Rupin Bapuji, Bennett Wiredu, and Kourosh Kehtari.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RateMyTracks |
ID | fejbmlpffkoiinhibcojnjldfhedomfe |
URL Chính Thức | https://chromewebstore.google.com/detail/ratemytracks/fejbmlpffkoiinhibcojnjldfhedomfe |
Mô tả | Get clear insights into professors at the University of Alberta while browsing Beartracks. |
Kích Thước Tệp | 105 KB |
Số Lần Cài Đặt | 249 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2021-07-23 |
Ngày Phát Hành | 2021-07-21 |
Nhà Phát Triển | RateMyTracks |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://forms.gle/fFzfrTCQYAqk18zS9 |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RateMyTracks", "description": "Get clear insights into professors at the University of Alberta while browsing Beartracks.", "version": "1.1.1", "manifest_version": 3, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.beartracks.ualberta.ca\/*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "profData.json" ], "matches": [ "https:\/\/www.beartracks.ualberta.ca\/*" ] } ], "permissions": [ "storage" ] } |