SQLite data schema for tab notes (in the profile as tabnotes.sqlite) in Firefox nightly so i can search all the tabs and their notes ; TabNotesStorage.init (TabNotes.sys.mjs - mozsearch)
Discovered: Jan 6, 2026 22:49 (UTC) SQLite data schema for tab notes (in the profile as tabnotes.sqlite) in Firefox nightly so i can search all the tabs and their notes ; TabNotesStorage.init (TabNotes.sys.mjs - mozsearch) <– super cool, yay, thanks!
Data schema :-)
CREATE TABLE IF NOT EXISTS "tabnotes" (
id INTEGER PRIMARY KEY,
canonical_url TEXT NOT NULL,
created INTEGER NOT NULL,
note_text TEXT NOT NULL
);