Google Calendar Integration for Todoist

Adds a todoist bar to the Google Calendar page.

Co je Google Calendar Integration for Todoist?

Google Calendar Integration for Todoist je rozšíření Chrome vyvinuté Spencer Hachmeister, a jeho hlavní funkcí je „Adds a todoist bar to the Google Calendar page.“.

Stáhnout soubor CRX rozšíření Google Calendar Integration for Todoist

Stáhněte si soubory rozšíření Google Calendar Integration for Todoist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                                            

Základní Informace o Rozšíření

Název Google Calendar Integration for Todoist Google Calendar Integration for Todoist
ID bnbmmdelanagbipabefjmhgpjaindpbn
Oficiální URL https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn
Popis Adds a todoist bar to the Google Calendar page.
Velikost souboru 200 KB
Počet instalací 188
Aktuální Verze 1.0.0.1
Poslední Aktualizace 2017-12-06
Datum Vydání 2017-12-06
Hodnocení 4.36/5 Celkem 11 Hodnocení
Vývojář Spencer Hachmeister
Typ Platby free
Podporované Jazyky 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
    }
}