Berkeley Schedule Exporter

Export your Berkeley class schedule!

Berkeley Schedule Exporter란 무엇입니까?

Berkeley Schedule Exporter은(는) berkeleyschedexport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export your Berkeley class schedule!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Berkeley Schedule Exporter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Export your Berkeley class schedule to .ics! (which can be imported to Google Calendar). Should also work with other schools that use collegescheduler.com.

https://github.com/ziyaointl/Schedule-Exporter

Usage

1. Go to CalCentral, My Academics. Select Schedule Planner.

2. Check the courses you want to export. You can select from both Current Schedule and Shopping Cart.

3. Click on the extension icon in the upper right Chrome menu. (You might have to wait a few seconds for the page to fully load before clicking on the icon). You should get a file named calendar.ics. Then, you can import this ics file to whatever calendar platform you desire. Classes automatically repeat weekly starting from the first day of the current semester!                    

확장 프로그램 기본 정보

이름 Berkeley Schedule Exporter Berkeley Schedule Exporter
ID adnjnncenfmhbfaggmchmfelhbafbkmn
공식 URL https://chrome.google.com/webstore/detail/berkeley-schedule-exporte/adnjnncenfmhbfaggmchmfelhbafbkmn
설명 Export your Berkeley class schedule!
파일 크기 1.1 MB
설치 횟수 929
현재 버전 1.2.4
최근 업데이트 2023-02-26
출시 날짜 2020-01-15
평점 4.28/5 총 18 개의 평점
개발자 berkeleyschedexport
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ziyaointl/Schedule-Exporter
도움말 페이지 URL https://github.com/ziyaointl/Schedule-Exporter/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Berkeley Schedule Exporter",
    "version": "1.2.4",
    "description": "Export your Berkeley class schedule!",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/export.js",
                "src\/icsjs\/ics.deps.min.js"
            ],
            "matches": [
                "https:\/\/berkeley.collegescheduler.com\/*"
            ]
        }
    ]
}