A way to make all events from a iCal subscription tentative in Outlook.
The easiest way to use this service is by using the form found on the website. The generated link consists of the url: https://tentative.schutter.xyz/ical/
followed by the original iCal url encoded as a uri. For example in JavaScript this can be done with the following snippet:
const iCalUrl = encodeURIComponent('https://...')
const url = `https://tentative.schutter.xyz/ical/${iCalUrl}`
src/index.ts
calls the request handler in src/handler.ts
, and will return the modified iCal.
For information on how to preview and publish your worker, please see the Wrangler docs.