Quickly create Google Calendar events from natural language.
Quick Add was a Google Calendar feature that enabled creating calendar events from natural language text input. It was removed for no reason and upset many people. This is my attempt to carry on its legacy. It uses the Chrono library to extract time data from text.
Select any text that has date information (e.g. Movie at 2:30pm tomorrow) and right-click and use the context menu to add the event to your calendar.
Alternatively, events can be created by clicking the app icon and entering the event info in the text box.
User can choose the language in which they would like to parse the input text in extension options page.
Currently supported languages are:
Supported languages depends on the Chrono node module locales.
Install the Chrome extension from Chrome Web Store.
Alternatively, I have a running implementation on my website. This is useful when you're on a device without Chrome extensions, like a phone.
If you want to develop locally:
yarn install
This app uses rollup transpiling to use the JavaScript modules pattern.
yarn build
: transpile all scripts into chrome-extension
directoryyarn watch
: transpile all scripts into chrome-extension
directory and re-transpile automatically on changesThe "API" this app is using is documented here.
Max Timkovich