Rutgers JudgeMyProfessor
Seamlessly integrates with the Rutgers course registration system to provide valuable information about your professors
Rutgers JudgeMyProfessorคืออะไร?
Rutgers JudgeMyProfessor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lukas Siernos และคุณลักษณะหลักของมันคือ "Seamlessly integrates with the Rutgers course registration system to provide valuable information about your professors"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rutgers JudgeMyProfessor
ดาวน์โหลดไฟล์ส่วนขยาย Rutgers JudgeMyProfessor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Instantly access professor ratings and data while browsing course offerings - Hover over rating bubbles to see detailed information about your potential professors - Professor matching algorithm identifies related courses, subjects and departments for increased accuracy - Easy and automatic installation - only runs when you access a Rutgers course registration page - Github: https://github.com/TekRekon/rutgers-judgemyprof-extension By Lukas Siernos and Praney Hirpara Version 2.0.0 ---Added--- - Implemented pulsing animation for rating elements while loading professor ratings - Introduced a button in the extension popup to reset caches if the extension is misbehaving - Utilized Chrome's local storage for storing cached data, enhancing cross-session performance - Injected elements with error messages are now clickable, revealing their stack trace ---Fixed--- - Revised backend and content scripts for better overall performance, reliability, and readability - Ratings are now displayed in decimal format across the extension for consistency - Updated formatting for professor names in popup cards to ensure correct capitalization - Extended permissions to work with the new Rutgers SOC URL - Fixed styling for rating bubbles that result in an error - Fixed bug where professors with middle initials occasionally weren't found - Fixed visual bug where long department names would be cut off in the rating bubble popup - Fixed click to search popup formatting in CSP - Support for all tabs in CSP - Bubbles in CSP now more reliably match the professors the course offers - Fixed styling for the onHover error/click to search elements of a rating bubble in CSP
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Rutgers JudgeMyProfessor |
ID | pobjkogdmfhednbhiinlipploogcbgpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/rutgers-judgemyprofessor/pobjkogdmfhednbhiinlipploogcbgpg |
คำอธิบาย | Seamlessly integrates with the Rutgers course registration system to provide valuable information about your professors |
ขนาดไฟล์ | 283 KB |
จำนวนการติดตั้ง | 112 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2024-02-22 |
วันที่เผยแพร่ | 2024-01-21 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Lukas Siernos |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Rutgers JudgeMyProfessor", "description": "Seamlessly integrates with the Rutgers course registration system to provide valuable information about your professors", "version": "2.0.0", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/sims.rutgers.edu\/webreg\/*", "*:\/\/sis.rutgers.edu\/soc\/*", "*:\/\/sis.rutgers.edu\/oldsoc\/*", "*:\/\/sims.rutgers.edu\/csp\/*", "*:\/\/classes.rutgers.edu\/*" ], "js": [ ".\/src\/js\/content.js" ], "css": [ ".\/src\/css\/styles.css" ], "all_frames": true } ], "icons": { "16": ".\/src\/assets\/icons\/logo16.png", "32": ".\/src\/assets\/icons\/logo32.png", "48": ".\/src\/assets\/icons\/logo48.png", "96": ".\/src\/assets\/icons\/logo96.png", "128": ".\/src\/assets\/icons\/logo128.png" }, "host_permissions": [ "https:\/\/www.ratemyprofessors.com\/graphql\/" ], "background": { "service_worker": ".\/src\/js\/background.js" }, "action": { "default_icon": { "16": ".\/src\/assets\/icons\/logo16.png", "32": ".\/src\/assets\/icons\/logo32.png", "48": ".\/src\/assets\/icons\/logo48.png", "96": ".\/src\/assets\/icons\/logo96.png", "128": ".\/src\/assets\/icons\/logo128.png" }, "default_popup": ".\/src\/html\/popup.html" } } |