GOLD Calendar

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

GOLD Calendar क्या है?

GOLD Calendar rt.waltman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily add your academic schedule to your calendar program of choice!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GOLD Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}