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是由ben.extensions開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.”。
擴展截圖
下載NJIT Schedule Builder Profiles擴展crx文件
下載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 |
官方網址 | 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" } } |