DraftToCalendar

Taking classes from DraftMySchedule and adding them to a user's Google calendar

DraftToCalendar란 무엇입니까?

DraftToCalendar은(는) David George에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Taking classes from DraftMySchedule and adding them to a user's Google calendar"입니다.

확장 프로그램 스크린샷

screenshot

DraftToCalendar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        DraftToCalendar is a google chrome extension which will take a Western University DraftMySchedule course timetable and will add it to a user's google calendar. This is much easier then having to manually create a google calendar for the entire year manually. All it takes is one button click and your entire schedule will be automatically added. Simple as that.                    

확장 프로그램 기본 정보

이름 DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
공식 URL https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
설명 Taking classes from DraftMySchedule and adding them to a user's Google calendar
파일 크기 67.89 KB
설치 횟수 209
현재 버전 0.1.4
최근 업데이트 2022-09-08
출시 날짜 2021-08-30
평점 5.00/5 총 11 개의 평점
개발자 David George
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DraftToCalendar",
    "description": "Taking classes from DraftMySchedule and adding them to a user's Google calendar",
    "version": "0.1.4",
    "manifest_version": 3,
    "oauth2": {
        "client_id": "865090149920-e0do53oficdm2hk97gnravkq5q7hgh5r.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar"
        ]
    },
    "icons": {
        "16": ".\/calendar-icon.png",
        "48": ".\/calendar-icon.png",
        "128": ".\/calendar-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/draftmyschedule.uwo.ca\/*"
            ],
            "js": [
                "script1.js",
                "script2.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_title": "DraftToCalendar",
        "default_popup": ".\/index.html"
    },
    "permissions": [
        "identity",
        "activeTab"
    ]
}