GOLD Calendar

Easily add your academic schedule to your calendar program of choice!

GOLD Calendar là gì?

GOLD Calendar là một tiện ích mở rộng Chrome được phát triển bởi rt.waltman, và tính năng chính của nó là "Easily add your academic schedule to your calendar program of choice!".

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

screenshot

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

Tải xuống các tệp mở rộng GOLD Calendar 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

                        GOLD Calendar adds a convenient 'Export Schedule' button to the 'My Class Schedule' page on GOLD. When clicked, a *.ics (iCalendar format) file containing your academic schedule will download. Import this *.ics file to your calendar of choice (such as Mac OSX Calendar or Google Calendar). 

Please report any issues or bugs that you may find, as I have had limited GOLD accounts to test with.

Created By: Richard Waltman                    

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

Tên GOLD Calendar GOLD Calendar
ID bcoocjebknnbkafliolenjhmgidfmhib
URL Chính Thức https://chromewebstore.google.com/detail/gold-calendar/bcoocjebknnbkafliolenjhmgidfmhib
Mô tả Easily add your academic schedule to your calendar program of choice!
Kích Thước Tệp 53.95 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 1.11
Cập Nhật Lần Cuối 2016-01-03
Ngày Phát Hành 2016-01-03
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển rt.waltman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rtwaltman/GOLDCalendar
URL Trang Trợ Giúp https://github.com/rtwaltman/GOLDCalendar
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GOLD Calendar",
    "version": "1.11",
    "author": "Richard Waltman",
    "description": "Easily add your academic schedule to your calendar program of choice!",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon38.png",
        "default_popup": "popup.html",
        "default_title": "GOLD Calendar"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.sa.ucsb.edu\/gold\/StudentSchedule.aspx"
            ],
            "js": [
                "icsBuilder.js",
                "FileSaver.min.js",
                "course.js",
                "main.js"
            ],
            "css": [
                "button.css"
            ]
        }
    ]
}