NJIT Schedule Builder RMP
An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
NJIT Schedule Builder RMPคืออะไร?
NJIT Schedule Builder RMP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vineethedev และคุณลักษณะหลักของมันคือ "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NJIT Schedule Builder RMP
ดาวน์โหลดไฟล์ส่วนขยาย NJIT Schedule Builder RMP ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows students to quickly view ratemyprofessor.com information on the NJIT Schedule Builder (https://uisapppr3.njit.edu/scbldr/). You can view the source code at https://github.com/Vineetsridhar/RMPExtension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NJIT Schedule Builder RMP |
ID | gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
คำอธิบาย | An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website. |
ขนาดไฟล์ | 32.51 KB |
จำนวนการติดตั้ง | 1,263 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2022-12-23 |
วันที่เผยแพร่ | 2020-09-01 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | vineethedev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://uisapppr3.njit.edu/scbldr/ |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NJIT Schedule Builder RMP", "version": "1.5", "description": "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.", "icons": { "16": "Icons\/icon16.png", "32": "Icons\/icon32.png", "48": "Icons\/icon48.png", "64": "Icons\/icon64.png", "100": "Icons\/icon100.png", "128": "Icons\/icon128.png", "200": "Icons\/icon200.png" }, "manifest_version": 2, "permissions": [ "https:\/\/uisapppr3.njit.edu\/scbldr\/+" ], "browser_action": { "default_icon": "Icons\/icon32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/uisapppr3.njit.edu\/scbldr\/" ], "run_at": "document_end" } ] } |