Clipwise is a free Notion web clipper that saves complete web pages to Notion databases without requiring an account or server, preserving formatting and automatically filling in metadata like URLs, authors, and publication dates.
Notion redesigned its text editing system in 2025 using Conflict-free Replicated Data Types (CRDTs) to enable true collaborative editing. Previously, concurrent edits to the same block used a "last write wins" approach that lost changes; the new system based on Replicated Growable Array (RGA) preserves all edits by assigning unique IDs to characters and tracking insertions and deletions as tombstones.
LeoTabs is a free, open-source tab and bookmark organizer for Chrome and Edge browsers that lets users save tabs as project collections, organize them into spaces, and restore work sessions. It supports importing bookmarks, searching tabs, exporting to formats like JSON and Markdown, and optional AI-powered organization via OpenAI, Anthropic, Google Gemini, or DeepSeek APIs.
Notion redesigned its text editing system in 2025 to support true concurrent editing by implementing CRDTs (Conflict-free Replicated Data Types), replacing a "last write wins" approach that caused data loss when multiple users edited the same block simultaneously. The CRDT implementation uses a Replicated Growable Array structure where each character has a unique ID, allowing concurrent insertions and deletions to merge deterministically without losing changes.
Notion redesigned its text editing system in 2025 to support true collaborative editing by implementing CRDTs (Conflict-free Replicated Data Types), replacing the previous "last write wins" approach that caused users to lose concurrent edits. The CRDT implementation uses a Replicated Growable Array structure where each character has a unique ID, allowing simultaneous edits to be merged without data loss while preserving user intent in most cases.