Test deployment for visualization embeds — expect bugs
You can also see how a given embed will look on the live AIRI website by using a snippet of Javascript. Add a new bookmark, and in the URL box, paste in the below. Then, paste in the embed endpoint, and the Airtable embed will be replaced by the Navigator embed. Be sure to use the live URL, it won't work with localhost (click the copy URL button in the embed directory for easy use).
javascript:void(function(){var e=document.querySelector('iframe.airtable-embed');if(!e){alert('No Airtable embed found on this page.');return}var u=prompt('Enter your replacement embed URL:','https://example.com/my-dashboard');if(!u)return;e.src=u;e.className='';e.style.background='transparent';e.style.border='none';e.style.width='100%';e.style.height='1000px';var p=e.parentElement;p.style.transition='outline 0.3s';p.style.outline='3px solid #28a745';setTimeout(function(){p.style.outline='none'},1500);console.log('[Embed Replacer] Swapped Airtable embed with:',u)}())