NJIT Schedule Builder Profiles

This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.

Cos'è NJIT Schedule Builder Profiles?

NJIT Schedule Builder Profiles è un'estensione di Chrome sviluppata da ben.extensions, e la sua funzione principale è "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NJIT Schedule Builder Profiles

Scarica i file di estensione NJIT Schedule Builder Profiles in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome NJIT Schedule Builder Profiles NJIT Schedule Builder Profiles
ID pmnpckcmdalibabddocfiabejkbmcanp
URL Ufficiale https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp
Descrizione This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
Dimensione del File 59.87 KB
Conteggio Installazioni 82
Versione Corrente 0.0.2
Ultimo Aggiornamento 2022-05-19
Data di Pubblicazione 2022-03-30
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ben.extensions
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles
Lingue Supportate 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"
    }
}