Your privacy is respected. No data is stored.
Note: Due to Instagram's API restrictions, direct downloading may be limited. This tool provides previews when possible. For downloading, please use the official Instagram app.
1. Copy URL
2. Paste above
3. View preview
`;
}
previewContent.innerHTML = embedHtml;
}
function escapeHtml(str) {
if (!str) return '';
return str.replace(/[&<>]/g, function(m) {
if (m === '&') return '&';
if (m === '<') return '<';
if (m === '>') return '>';
return m;
});
}
fetchBtn.onclick = fetchContent;
urlInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') fetchContent();
});