Skip to main content

Overview

Create colorful sticky notes that persist across sessions. Notes are draggable, editable, and support 6 colors.
Sticky Note plugin

Features

  • 🎨 6 colors β€” Yellow, Green, Blue, Pink, Orange, Purple
  • ✏️ Editable β€” type directly in the note
  • πŸ–±οΈ Draggable β€” move notes anywhere on the board
  • πŸ’Ύ Auto-save β€” text, position, and color persist
  • πŸ—‘οΈ Delete β€” click the Γ— button
  • βž• New notes β€” ”+ New Note” button (bottom-right)

Events

EventPayloadWhen
sticky-note:created{ id: string }A new note is created
sticky-note:deleted{ id: string }A note is deleted

Installation

Included by default in plugins.json:
{
  "id": "sticky-note",
  "url": "./plugins/sticky-note/plugin.js",
  "name": "Sticky Note"
}
Or install manually via the Plugin Manager.

Storage Keys

KeyTypeDescription
sticky-notesArray<Note>All saved notes
interface Note {
  id: string;
  text: string;
  color: number;      // 0-5
  x: number;
  y: number;
  width: number;
  height: number;
}

File

plugins/sticky-note/plugin.js