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 là gì?
NJIT Schedule Builder RMP là một tiện ích mở rộng Chrome được phát triển bởi vineethedev, và tính năng chính của nó là "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".
Ả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 NJIT Schedule Builder RMP
Tải xuống các tệp mở rộng NJIT Schedule Builder RMP 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NJIT Schedule Builder RMP |
ID | gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
URL Chính Thức | https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
Mô tả | An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website. |
Kích Thước Tệp | 32.51 KB |
Số Lần Cài Đặt | 1,263 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2022-12-23 |
Ngày Phát Hành | 2020-09-01 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | vineethedev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://uisapppr3.njit.edu/scbldr/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |