UMD GCal Schedule Importer

Imports your UMD class schedule to Google Calendar.

UMD GCal Schedule Importer란 무엇입니까?

UMD GCal Schedule Importer은(는) https://timothychen.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Imports your UMD class schedule to Google Calendar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

UMD GCal Schedule Importer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of manually creating a Google Calendar for your UMD course schedule every single semester? Look no further! This chrome extension will pull the data from your Testudo page (after you navigate to the show schedule page) and create a Google Calendar for you, filled with your semester's schedule!

Currently works for Fall and Spring semesters.

If you find any bugs, please contact [email protected].

Created with <3 by Timothy Chen and Brandon Berry.                    

확장 프로그램 기본 정보

이름 UMD GCal Schedule Importer UMD GCal Schedule Importer
ID jegeklcfgfcjbcbcabblbhdakfaibckn
공식 URL https://chromewebstore.google.com/detail/umd-gcal-schedule-importe/jegeklcfgfcjbcbcabblbhdakfaibckn
설명 Imports your UMD class schedule to Google Calendar.
파일 크기 684 KB
설치 횟수 642
현재 버전 4.0
최근 업데이트 2020-09-05
출시 날짜 2020-01-30
평점 4.67/5 총 36 개의 평점
개발자 https://timothychen.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://schedule-importer.umd.edu
도움말 페이지 URL https://github.com/timothychen01/umd-google-cal-schedule-importer/wiki/Support
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD GCal Schedule Importer",
    "description": "Imports your UMD class schedule to Google Calendar.",
    "version": "4.0",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "",
        "https:\/\/ajax.googleapis.com\/*",
        "https:\/\/www.provost.umd.edu\/calendar\/*",
        "https:\/\/apis.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/0.97.8\/js\/materialize.min.js; object-src 'self'"
}