Google Calendar Integration for Todoist

Adds a todoist bar to the Google Calendar page.

Google Calendar Integration for Todoist란 무엇입니까?

Google Calendar Integration for Todoist은(는) Spencer Hachmeister에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a todoist bar to the Google Calendar page."입니다.

Google Calendar Integration for Todoist 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 Google Calendar Integration for Todoist Google Calendar Integration for Todoist
ID bnbmmdelanagbipabefjmhgpjaindpbn
공식 URL https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn
설명 Adds a todoist bar to the Google Calendar page.
파일 크기 200 KB
설치 횟수 188
현재 버전 1.0.0.1
최근 업데이트 2017-12-06
출시 날짜 2017-12-06
평점 4.36/5 총 11 개의 평점
개발자 Spencer Hachmeister
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Calendar Integration for Todoist",
    "version": "1.0.0.1",
    "author": "Spencer Hachmeister",
    "description": "Adds a todoist bar to the Google Calendar page.",
    "options_page": "options.html",
    "web_accessible_resources": [
        "jQuery\/*",
        "loader.js",
        "cssLoader.js",
        "main.css"
    ],
    "permissions": [
        "https:\/\/calendar.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "jQuery\/jquery.js",
                "jQuery\/jquery-ui.js",
                "loader.js"
            ],
            "css": [
                "jQuery\/jquery-ui.structure.css",
                "jQuery\/jquery-ui.theme.css"
            ]
        },
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "cssLoader.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "listener.js"
        ],
        "persistent": false
    }
}