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
公式URL 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"
            ]
        }
    ]
}