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文件

下載Google Calendar Integration for Todoist擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Google Calendar Integration for Todoist Google Calendar Integration for Todoist
ID bnbmmdelanagbipabefjmhgpjaindpbn
官方網址 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
    }
}