UMN Professor Ratings
Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
UMN Professor Ratingsคืออะไร?
UMN Professor Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย UMNProfessorRatings และคุณลักษณะหลักของมันคือ "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UMN Professor Ratings
ดาวน์โหลดไฟล์ส่วนขยาย UMN Professor Ratings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
UMN Professor Ratings adds RateMyProfessor ratings directly in UMN Schedule Builder. It allows you to choose a highly rated professor while choosing courses. Displays overall ratings and difficulty ratings from reviews by students. Professor Ratings, UMN, University of Minnesota
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
คำอธิบาย | Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder |
ขนาดไฟล์ | 12.12 KB |
จำนวนการติดตั้ง | 33 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2018-07-12 |
วันที่เผยแพร่ | 2018-07-12 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | UMNProfessorRatings |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UMN Professor Ratings", "author": "UMN Professor Ratings", "version": "2.0", "manifest_version": 2, "description": "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/schedulebuilder.umn.edu\/*" ], "js": [ "main.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "webRequest", "https:\/\/schedulebuilder.umn.edu\/*", "https:\/\/search-a.akamaihd.net\/typeahead\/suggest\/*" ], "browser_action": { "default_title": "UMN Professor Ratings", "default_icon": "images\/icon48.png" } } |