yaye.work18 downloadsGet auto-added properties on your new notes. Assign/remove a property to be "sitcky" anytime.
An Obsidian plugin that adds a configurable set of properties to every new note — so the frontmatter you always want is there from the moment a note is created.
Mark a property as "sticky" once, and it shows up on every note you make from then on.
now (or today) and each new note records its exact creation moment.now as the default to stamp the creation timestamp (e.g. 2026-06-25T13:00:00).Search for Sticky Properties in Settings → Community plugins → Browse, install, and enable.
main.js, manifest.json, and versions.json from the latest release.<your-vault>/.obsidian/plugins/sticky-properties/.The right-click menu item is added by detecting the property element in the Properties panel and extending Obsidian's native context menu. It relies on Obsidian's internal markup; if a future Obsidian update changes that markup, the menu item may stop appearing (the automatic stamping of new notes will keep working regardless).
The source lives in src/main.js and is bundled into main.js with esbuild.
npm install
npm run dev # watch + rebuild on change
npm run build # one-off production build
The right-click menu item is implemented with monkey-around, which safely wraps Obsidian's Menu.prototype.showAtMouseEvent and cleanly removes the patch on unload.