An Obsidian plugin that renders transcript notes as message app style speech bubbles, similar to Apple Messages.
- Renders transcript lines as speech bubbles
- Different colors for different speakers
- Right-aligned bubbles for the vault owner (configurable)
- Support for multiple speaker aliases
- Per-speaker custom colors and icons via frontmatter
- Inline timestamps for messages
- Date separators between conversation days
- Speaker groups/sides for roleplay and D&D scenarios
- Customizable appearance (bubble width, radius, compact mode)
-
Format your transcript notes with lines like:
[[Speaker Name]]: Message text -
Add the
transcripttag to the note frontmatter to enable bubbles in Reading view.--- tags: [transcript] ---
-
Switch to Reading view to see the bubbles.
[[John Smith]]: Hello!
[[me]]: Hi there!
[[John Smith]]: How are you doing?
[[me]]: I'm doing great, thanks for asking!Add timestamps to messages using [HH:MM] or [HH:MM:SS] format after the speaker name:
[[John]] [14:32]: Hello!
[[me]] [14:33]: Hi there!
[[John]] [14:35]: How's it going?Add visual date separators between conversation days:
--- 2024-01-15 ---
[[John]]: Hello!
[[me]]: Hi!
--- 2024-01-16 ---
[[John]]: Following up on yesterday...
Supported formats:
--- YYYY-MM-DD ---(e.g.,--- 2024-01-15 ---)--- Month Day, Year ---(e.g.,--- January 15, 2024 ---)
Customize individual speakers with colors and icons via frontmatter:
---
tags: [transcript]
speech-bubbles:
speakers:
Gandalf: "#9CA3AF" # Simple color format
Frodo:
color: "#34D399" # Object format with color
icon: "π§" # Emoji icon
Sauron:
color: "#EF4444"
icon: "[[avatars/eye.png]]" # Vault image as icon
---
[[Gandalf]]: You shall not pass!
[[Frodo]]: But I must destroy the ring...
[[Sauron]]: I see you...For D&D, debates, or roleplay scenarios, assign speakers to left or right sides regardless of the owner setting:
---
tags: [transcript]
speech-bubbles:
sides:
left: ["Gandalf", "Frodo", "Aragorn"] # Party members
right: ["Sauron", "Saruman"] # Villains
---
[[Gandalf]]: The fellowship must continue.
[[Sauron]]: Your quest is futile.
[[Frodo]]: We will not give up.- Your name: The name used in transcripts to identify you. Messages from this person will appear on the right side with blue bubbles (default: "me").
- Aliases: Other names that should also be treated as you (comma-separated).
- Maximum bubble width: Maximum width of speech bubbles as a percentage (10-100%, default: 75%).
- Bubble corner radius: Corner radius of speech bubbles in pixels (0-30px, default: 18px).
- Show speaker names: Display the speaker name above each bubble (default: on).
- Compact mode: Use smaller spacing and font sizes for a more compact layout.
- Your bubble color: Custom hex color for your speech bubbles (leave empty for default indigo).
- Enable debug logging: Logs toggle and render details to the developer console for troubleshooting.
---
tags: [transcript]
speech-bubbles:
speakers:
DM:
color: "#8B5CF6"
icon: "π²"
Gandalf:
color: "#9CA3AF"
icon: "π§"
Frodo:
color: "#34D399"
sides:
left: ["DM"]
right: ["Gandalf", "Frodo"]
---
--- January 15, 2024 ---
[[DM]] [19:00]: Welcome to Middle-earth! You find yourselves at the gates of Moria.
[[Gandalf]] [19:01]: I remember this place... the doors are hidden.
[[Frodo]] [19:02]: What's the password?
[[DM]] [19:03]: Roll an Intelligence check.
--- January 16, 2024 ---
[[DM]] [19:00]: Last session, you entered Moria...- Open Obsidian Settings
- Go to Community Plugins and disable Safe Mode
- Click Browse and search for "Speech Bubbles"
- Install the plugin and enable it
- Download
main.js,manifest.json, andstyles.cssfrom the latest release - Create a folder called
speech-bubblesin your vault's.obsidian/plugins/directory - Copy the downloaded files into this folder
- Reload Obsidian and enable the plugin in Settings > Community Plugins
# Install dependencies
yarn install
# Build for production
yarn build
# Development mode with watch
yarn dev:watch- Food Tracker: Track calories, macros, and nutrition totals with database and inline entries.
- YouTrack Fetcher: Fetch YouTrack issues into structured notes with templates.
- Grazie Plugin: Grammar and spell checking powered by JetBrains AI Platform (in development).
MIT