Video Structured Data Generator
powered by ChatGPT – JSON-LD für Google VideoObject
`;
jsonOutput.textContent = code;
outputArea.style.display = "block";
copyMsg.textContent = "";
};
copyBtn.onclick = function() {
const txt = jsonOutput.textContent;
navigator.clipboard.writeText(txt).then(() => {
copyMsg.textContent = "In die Zwischenablage kopiert!";
setTimeout(() => copyMsg.textContent = "", 1800);
});
};