Google Calendar Integration for Todoist
Adds a todoist bar to the Google Calendar page.
What is Google Calendar Integration for Todoist?
Google Calendar Integration for Todoist is a Chrome extension developed by Spencer Hachmeister, and its main feature is "Adds a todoist bar to the Google Calendar page.".
Download Google Calendar Integration for Todoist Extension CRX File
Download Google Calendar Integration for Todoist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | ![]() |
ID | bnbmmdelanagbipabefjmhgpjaindpbn |
Official URL | https://chrome.google.com/webstore/detail/google-calendar-integrati/bnbmmdelanagbipabefjmhgpjaindpbn |
Description | Adds a todoist bar to the Google Calendar page. |
File Size | 200 KB |
Installation Count | 188 |
Current Version | 1.0.0.1 |
Last Updated | 2017-12-06 |
Publish Date | 2017-12-06 |
Rating | 4.36/5 Total 11 Ratings |
Developer | Spencer Hachmeister |
Payment Type | free |
Supported Languages | 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 } } |