GOLD Calendar

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

什麼是GOLD Calendar?

GOLD Calendar是由rt.waltman開發的Chrome擴展程式,該擴展的主要功能是“Easily add your academic schedule to your calendar program of choice!”。

擴展截圖

screenshot

下載GOLD Calendar擴展crx文件

下載GOLD Calendar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 GOLD Calendar GOLD Calendar
ID bcoocjebknnbkafliolenjhmgidfmhib
官方網址 https://chromewebstore.google.com/detail/gold-calendar/bcoocjebknnbkafliolenjhmgidfmhib
簡介 Easily add your academic schedule to your calendar program of choice!
檔案大小 53.95 KB
安裝次數 74
目前版本 1.11
更新時間 2016-01-03
上架時間 2016-01-03
評分 4.60/5 共 5 次評分
開發者 rt.waltman
付費類型 free
擴展官網 https://github.com/rtwaltman/GOLDCalendar
說明頁面URL https://github.com/rtwaltman/GOLDCalendar
支援的語言 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"
            ]
        }
    ]
}