PRIVACY-FIRST DISTRIBUTION
Embeddable calculators
Add a fast MyClockLedger calculator to your site. Embedded tools run in the visitor’s browser, use no analytics by default, and send only resize and non-sensitive completion events.
Optional automatic resizing
window.addEventListener('message', (event) => {
if (event.origin !== 'https://myclockledger.com') return;
if (event.data?.type !== 'myclockledger:embed:resize') return;
const frame = document.querySelector('iframe[src*="myclockledger.com/embed/"]');
if (frame) frame.style.height = event.data.height + 'px';
});Completion events include only the calculator identifier and a valid-completion flag. They never include entered times, breaks, rates, totals, or other calculator values.