NJIT Schedule Builder Profiles
This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
NJIT Schedule Builder Profilesคืออะไร?
NJIT Schedule Builder Profiles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ben.extensions และคุณลักษณะหลักของมันคือ "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NJIT Schedule Builder Profiles
ดาวน์โหลดไฟล์ส่วนขยาย NJIT Schedule Builder Profiles ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Schedule Builder Profiles allows the user to save plans on the schedule builder website for New Jersey Institute of Technology (NJIT). With this chrome extension installed, schedules can be stored and brought back at the click of a button. This allows multiple schedules to be planned in tandem, without the need to rebuild. This extension was made by Benjamin Shuster, and is not supported by NJIT. Please do not contact NJIT for support.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NJIT Schedule Builder Profiles |
ID | pmnpckcmdalibabddocfiabejkbmcanp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp |
คำอธิบาย | This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. |
ขนาดไฟล์ | 59.87 KB |
จำนวนการติดตั้ง | 82 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2022-05-19 |
วันที่เผยแพร่ | 2022-03-30 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | ben.extensions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NJIT Schedule Builder Profiles", "manifest_version": 3, "version": "0.0.2", "permissions": [ "storage", "tabs", "clipboardWrite" ], "description": "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. ", "background": { "service_worker": "background.js" }, "action": { "default_popup": "\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/uisapppr3.njit.edu\/scbldr\/" ], "js": [ "content.js" ] } ], "icons": { "128": "images\/128.png", "48": "images\/48.png", "16": "images\/16.png" } } |