Google Calendar Integration for Todoist

Adds a todoist bar to the Google Calendar page.

Wat is Google Calendar Integration for Todoist?

Google Calendar Integration for Todoist is een Chrome-extensie ontwikkeld door Spencer Hachmeister, en de belangrijkste functie is "Adds a todoist bar to the Google Calendar page.".

Download het CRX-bestand van de extensie Google Calendar Integration for Todoist

Download Google Calendar Integration for Todoist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Google Calendar Integration for Todoist Google Calendar Integration for Todoist
ID bnbmmdelanagbipabefjmhgpjaindpbn
Officiële URL https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn
Beschrijving Adds a todoist bar to the Google Calendar page.
Bestandsgrootte 200 KB
Aantal Installaties 188
Huidige Versie 1.0.0.1
Laatst Bijgewerkt 2017-12-06
Publicatiedatum 2017-12-06
Beoordeling 4.36/5 Totaal 11 Beoordelingen
Ontwikkelaar Spencer Hachmeister
Betalingswijze free
Ondersteunde Talen 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
    }
}