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 là gì?

NJIT Schedule Builder Profiles là một tiện ích mở rộng Chrome được phát triển bởi ben.extensions, và tính năng chính của nó là "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NJIT Schedule Builder Profiles

Tải xuống các tệp mở rộng NJIT Schedule Builder Profiles 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NJIT Schedule Builder Profiles NJIT Schedule Builder Profiles
ID pmnpckcmdalibabddocfiabejkbmcanp
URL Chính Thức https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp
Mô tả This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
Kích Thước Tệp 59.87 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2022-05-19
Ngày Phát Hành 2022-03-30
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ben.extensions
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}