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.”。

扩展截图

screenshot

下载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 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"
    }
}