Skip to content

Instantly share code, notes, and snippets.

@ChaseC99
Last active December 27, 2021 23:04
Show Gist options
  • Save ChaseC99/bb0307aa76d2d253e08f43b8c9e61270 to your computer and use it in GitHub Desktop.
Save ChaseC99/bb0307aa76d2d253e08f43b8c9e61270 to your computer and use it in GitHub Desktop.
How to create a Google Calendar Desktop application on MacOS

Creating a Goolge Calendar Shortcut

  1. Navigate to https://calendar.google.com
  2. Click the Chrome drop down menu > More Tools > Create Shortcut
  3. Rename to "Google Calendar" and check "Open as window"
  4. Open the new Google Calendar app
  5. Right click on the app > Options > Keep in Dock
    Source: https://apple.stackexchange.com/a/393180

If you'd like to create a Google Calendar app for a secondary account (e.g. school, work, etc.):

  1. Open Chrome Devtools
  2. Copy and past the following code into the console
const startUrl = 'https://calendar.google.com/calendar/u/1/r';
document.head
  .querySelector(':first-child')
  .insertAdjacentHTML(
    'beforebegin',
    `<link rel="manifest" href='data:application/manifest+json,{"start_url":"${startUrl}"}' />`,
  );
  1. Follow steps 2-5 above Source: https://apple.stackexchange.com/a/399458
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment