Get class schedule from webreg

This extension will download the class schedule in ics format.

O que é Get class schedule from webreg?

Get class schedule from webreg é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension will download the class schedule in ics format.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Get class schedule from webreg

Baixe arquivos de extensão Get class schedule from webreg 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

                        Note: this extension is for UCSD students only!

This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc.

You need to log in webreg before you can use it.

Please help me improve it. https://github.com/plrectco/GetCalendar                    

Informações Básicas da Extensão

Nome Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
URL Oficial https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
Descrição This extension will download the class schedule in ics format.
Tamanho do Arquivo 18.21 KB
Contagem de Instalações 13
Versão Atual 1.0
Última Atualização 2018-01-17
Data de Publicação 2018-01-16
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/plrectco/GetCalendar
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get class schedule from webreg",
    "description": "This extension will download the class schedule in ics format.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Download the class schedule",
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/act.ucsd.edu\/*"
            ],
            "js": [
                "ics.deps.min.js",
                "ics1.js",
                "script.js"
            ]
        }
    ]
}