DraftToCalendar

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

O que é DraftToCalendar?

DraftToCalendar é uma extensão do Chrome desenvolvida por David George, e sua principal característica é "Taking classes from DraftMySchedule and adding them to a user's Google calendar".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão DraftToCalendar

Baixe arquivos de extensão DraftToCalendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome DraftToCalendar DraftToCalendar
ID khkodfcgkhljepkpapocoaojdnkbbfhc
URL Oficial https://chromewebstore.google.com/detail/drafttocalendar/khkodfcgkhljepkpapocoaojdnkbbfhc
Descrição Taking classes from DraftMySchedule and adding them to a user's Google calendar
Tamanho do Arquivo 67.89 KB
Contagem de Instalações 209
Versão Atual 0.1.4
Última Atualização 2022-09-08
Data de Publicação 2021-08-30
Classificação 5.00/5 Total de 11 Avaliações
Desenvolvedor David George
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}