UMN Classes to Calendar

Add your UMN classes to your Google Calendar through MyU

UMN Classes to Calendar란 무엇입니까?

UMN Classes to Calendar은(는) http://brodenwanner.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add your UMN classes to your Google Calendar through MyU"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

UMN Classes to Calendar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        No more meticulously adding your class schedule to your calendar manually! This extension adds a button to your UMN MyU class calendar that allows you to quickly add your class schedule to your Google Calendar or export it to any other calendar. Simply install the extension, go to the "Academics" tab in MyU, and click on the "Add to Google Calendar" button. You can then choose to add it to a new or existing calendar, and you're done!                    

확장 프로그램 기본 정보

이름 UMN Classes to Calendar UMN Classes to Calendar
ID hgdfmecgpajmoeionaieooohpbkibaen
공식 URL https://chrome.google.com/webstore/detail/hgdfmecgpajmoeionaieooohpbkibaen
설명 Add your UMN classes to your Google Calendar through MyU
파일 크기 108 KB
설치 횟수 540
현재 버전 1.1.2
최근 업데이트 2021-08-23
출시 날짜 2020-09-07
평점 5.00/5 총 1 개의 평점
개발자 http://brodenwanner.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://umnclassestocalendar.com
도움말 페이지 URL https://github.com/broden-wanner/classes-to-calendar/issues
개인정보 보호 정책 페이지 URL https://classestocalendar.brodenwanner.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "UMN Classes to Calendar",
    "name": "UMN Classes to Calendar",
    "description": "Add your UMN classes to your Google Calendar through MyU",
    "version": "1.1.2",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "192": "icons\/android-chrome-192x192.png",
        "512": "icons\/android-chrome-512x512.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "*:\/\/*.myu.umn.edu\/*",
        "*:\/\/classestocalendar.brodenwanner.com\/*",
        "*:\/\/*.umnclassestocalendar.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.myu.umn.edu\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": []
}