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
公式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
    }
}