A Chrome extension that makes it easy to export events from the Dynamous community to your personal calendar.
DynaCal scans the Dynamous Live Events page and lets you export events directly to:
- Google Calendar - Opens a pre-filled event in Google Calendar
- Outlook Calendar - Opens a pre-filled event in Outlook Web
- ICS File - Downloads a calendar file you can import into any calendar app
- Displays all upcoming events from the Dynamous community
- Shows your RSVP status for each event
- Reminds you to RSVP for events you haven't responded to
- Tracks which events you've already exported (prevents duplicates)
- Shows a confirmation toast when you add an event
Yes! Here's why you can trust this extension:
- No data leaves your browser - The extension only reads the Dynamous events page. It never sends your data to any external server.
- No tracking - We don't collect analytics, usage data, or any personal information.
- No accounts required - You don't need to sign up or log in to anything.
The extension only requests the permissions it absolutely needs:
| Permission | Why It's Needed |
|---|---|
activeTab |
To read event data from the Dynamous page you're viewing |
storage |
To remember which events you've already exported (stored locally on your computer) |
host_permissions for community.dynamous.ai |
To run only on the Dynamous community site |
All the code is right here in this repository. You can read through it yourself to verify exactly what it does. There are no hidden features or obfuscated code.
Since this extension isn't on the Chrome Web Store, you'll need to load it manually. Don't worry - it's easy!
- Click the green Code button at the top of this repository
- Select Download ZIP
- Extract the ZIP file to a folder on your computer (remember where you put it!)
Before loading the extension, you need to build it:
- Make sure you have Node.js installed (version 16 or higher)
- Open a terminal/command prompt in the extension folder
- Run these commands:
npm install
npm run buildThis creates the dist folder with the bundled JavaScript files.
- Open Google Chrome
- Type
chrome://extensionsin the address bar and press Enter - You should see the Extensions management page
- Look for the Developer mode toggle in the top-right corner
- Click it to turn it ON (the toggle should turn blue)
- Click the Load unpacked button (appears after enabling Developer mode)
- Navigate to the folder where you extracted/downloaded the extension
- Select the folder and click Select Folder (or Open on Mac)
- You should see "DynaCal" appear in your list of extensions
- Make sure the toggle next to it is turned ON
- You should see the DynaCal icon in your Chrome toolbar (you may need to click the puzzle piece icon to find it)
- Click the puzzle piece icon in Chrome's toolbar
- Find "DynaCal" in the list
- Click the pin icon next to it
Now you can access DynaCal with one click!
- Go to community.dynamous.ai/c/live-events
- Click the DynaCal icon in your Chrome toolbar
- You'll see a list of upcoming events
- Click Google, Outlook, or ICS to export an event
- A confirmation message will appear, and the button will be disabled to prevent duplicate exports
You have two ways to add events to your calendar:
-
RSVP Now - Click this to go to the event page on Circle.so. Once you RSVP there, you'll receive a calendar invite via email or can use Circle's "Add to Calendar" option. When you click "RSVP Now" in DynaCal, the export buttons will be disabled since you'll manage the calendar invite through the RSVP page.
-
Google / Outlook / ICS - Use these buttons to directly export to your calendar without going through the RSVP flow. This is useful if you've already RSVP'd on Circle.so but didn't add the calendar invite at that time.
Note: Once you've selected "RSVP Now," you will need to manage the calendar invite through the meeting RSVP page on Circle.so.
This message appears if you're not on the correct page. Make sure you're at:
https://community.dynamous.ai/c/live-events
The extension only works on the Dynamous community site. Navigate to the live events page and try again.
- Make sure you're logged into the Dynamous community
- Try refreshing the page
- Close and reopen the extension popup
The extension tracks exports to prevent this, but if it happens:
- Google Calendar: Just delete the duplicate event
- Outlook: Delete the duplicate from your calendar
- ICS: Don't import the file again
For developers who want to understand or contribute to the codebase:
DynaCal/
├── manifest.json # Chrome extension configuration
├── popup.html # Extension popup UI
├── src/
│ ├── content.js # Runs on Dynamous pages, handles messaging
│ ├── popup.js # Popup logic and export handling
│ ├── scraper.js # Extracts event data from the page
│ └── utils/
│ ├── dateParser.js # Date/time parsing
│ ├── calendarLinks.js # Google/Outlook URL generation
│ └── icsGenerator.js # ICS file creation
├── dist/ # Built/bundled files (created by npm run build)
├── tests/ # Jest test files
└── icons/ # Extension icons
npm test # Run all tests
npm run test:watch # Run tests in watch mode
npm run test:coverage # Generate coverage reportnpm run build # Build for production
npm run build:watch # Rebuild on file changesMIT License - feel free to use, modify, and distribute this code.
Built with care for the Dynamous community.