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.
- Takes a text input e.g. "Dinner friday 7pm"
- Parses the input to find date info
- Returns a Google Calendar URL for adding the event to your calendar.
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:
- English
- French
- Dutch
- Japanese
- Russian
- Portuguese
- Ukrainian
- Chinese
- German
- Spanish
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 intochrome-extension
directoryyarn watch
: transpile all scripts intochrome-extension
directory and re-transpile automatically on changes
The "API" this app is using is documented here.
Max Timkovich