NJIT Schedule Builder Profiles
This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
O que é NJIT Schedule Builder Profiles?
NJIT Schedule Builder Profiles é uma extensão do Chrome desenvolvida por ben.extensions, e sua principal característica é "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão NJIT Schedule Builder Profiles
Baixe arquivos de extensão NJIT Schedule Builder Profiles no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | NJIT Schedule Builder Profiles |
ID | pmnpckcmdalibabddocfiabejkbmcanp |
URL Oficial | https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp |
Descrição | This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. |
Tamanho do Arquivo | 59.87 KB |
Contagem de Instalações | 82 |
Versão Atual | 0.0.2 |
Última Atualização | 2022-05-19 |
Data de Publicação | 2022-03-30 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | ben.extensions |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles |
Idiomas Suportados | 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" } } |