Plugins
Say
A plugin that allows the cursor to display a text bubble.
SayPlugin
The SayPlugin allows you to display a text bubble near the cursor, simulating speech or text hints during automated flows.
Demo
Options
Prop
Type
Usage
import { Cursor, SayPlugin } from '@cursor.js/core';
const cursor = new Cursor();
cursor.use(new SayPlugin({
theme: 'dark' // optional settings
}));
cursor.hover('.btn').say('Clicking this button next!').click();