Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
Qu'est-ce que Google Calendar Integration for Todoist ?
Google Calendar Integration for Todoist est une extension Chrome développée par Spencer Hachmeister, et sa fonction principale est "Adds a todoist bar to the Google Calendar page.".
Télécharger le fichier CRX de l'extension Google Calendar Integration for Todoist
Téléchargez les fichiers d'extension Google Calendar Integration for Todoist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | ![]() |
ID | bnbmmdelanagbipabefjmhgpjaindpbn |
URL Officiel | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
Description | Adds a todoist bar to the Google Calendar page. |
Taille du Fichier | 200 KB |
Nombre d'Installations | 188 |
Version Actuelle | 1.0.0.1 |
Dernière Mise à Jour | 2017-12-06 |
Date de Publication | 2017-12-06 |
Évaluation | 4.36/5 Total 11 Évaluations |
Développeur | Spencer Hachmeister |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |