Get class schedule from webreg

This extension will download the class schedule in ics format.

Get class schedule from webreg란 무엇입니까?

Get class schedule from webreg은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will download the class schedule in ics format."입니다.

확장 프로그램 스크린샷

screenshot

Get class schedule from webreg 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
공식 URL https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
설명 This extension will download the class schedule in ics format.
파일 크기 18.21 KB
설치 횟수 13
현재 버전 1.0
최근 업데이트 2018-01-17
출시 날짜 2018-01-16
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/plrectco/GetCalendar
지원되는 언어 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"
            ]
        }
    ]
}