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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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