Berkeley Schedule Exporter

Export your Berkeley class schedule!

Berkeley Schedule Exporter là gì?

Berkeley Schedule Exporter là một tiện ích mở rộng Chrome được phát triển bởi berkeleyschedexport, và tính năng chính của nó là "Export your Berkeley class schedule!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Berkeley Schedule Exporter

Tải xuống các tệp mở rộng Berkeley Schedule Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Berkeley Schedule Exporter Berkeley Schedule Exporter
ID adnjnncenfmhbfaggmchmfelhbafbkmn
URL Chính Thức https://chrome.google.com/webstore/detail/berkeley-schedule-exporte/adnjnncenfmhbfaggmchmfelhbafbkmn
Mô tả Export your Berkeley class schedule!
Kích Thước Tệp 1.1 MB
Số Lần Cài Đặt 929
Phiên Bản Hiện Tại 1.2.4
Cập Nhật Lần Cuối 2023-02-26
Ngày Phát Hành 2020-01-15
Đánh Giá 4.28/5 Tổng số 18 Đánh Giá
Nhà Phát Triển berkeleyschedexport
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ziyaointl/Schedule-Exporter
URL Trang Trợ Giúp https://github.com/ziyaointl/Schedule-Exporter/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}