RateMySunDevil
Pull ratings from ratemyprofessors.com and show directly in MyASU class search.
RateMySunDevil là gì?
RateMySunDevil là một tiện ích mở rộng Chrome được phát triển bởi Matthew, và tính năng chính của nó là "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.".
Ả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 RateMySunDevil
Tải xuống các tệp mở rộng RateMySunDevil 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
Pulls ratings from ratemyprofessors.com and show them in a panel at the top right when mousing over a professor in class search. If the panel does not update while mousing over, there are no reviews yet. Hide the panel by clicking the button. Click on the professors name in the panel to view their official ratemyprofessor page. Clicking the extension button in your Chrome browser will open a popup to search directly for a professor by last name and will open that search on ratemyprofessor.com in a new tab. For ASU students!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RateMySunDevil |
ID | epdifhgkiofeeogajceffcgiipcmdjgh |
URL Chính Thức | https://chromewebstore.google.com/detail/ratemysundevil/epdifhgkiofeeogajceffcgiipcmdjgh |
Mô tả | Pull ratings from ratemyprofessors.com and show directly in MyASU class search. |
Kích Thước Tệp | 155 KB |
Số Lần Cài Đặt | 106 |
Phiên Bản Hiện Tại | 0.6 |
Cập Nhật Lần Cuối | 2015-11-02 |
Ngày Phát Hành | 2015-11-02 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Matthew |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RateMySunDevil", "description": "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.", "version": "0.6", "browser_action": { "default_icon": "img\/rmsdicon.png", "default_title": "RateMySunDevil!", "default_popup": "reviewPopup.html" }, "icons": { "16": "img\/rmsdicon.png", "48": "img\/rmsdicon.png", "128": "img\/rmsdicon.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "http:\/\/www.ratemyprofessors.com\/*", "https:\/\/webapp4.asu.edu\/catalog*" ], "content_scripts": [ { "matches": [ "https:\/\/*.asu.edu\/catalog\/classlist*" ], "js": [ "jquery\/jquery.js", "contentScript.js", "jquery\/jquery-ui.min.js" ], "css": [ "jquery\/jquery-ui.min.css", "contentCss.css" ] } ], "background": { "scripts": [ "jquery\/jquery.js", "eventScript.js" ], "persistent": false } } |