// === Inject JSON-LD Schema Markup ===
document.addEventListener("DOMContentLoaded", function () {
const schemaData = {
"@context": "https://schema.org",
"@type": "Article",
"headline": "Where to Watch FMovies Legally in the USA",
"description": "Safe and legal FMovies alternatives in USA such as Netflix, Hulu, Disney+, Amazon Prime, Tubi.",
"author": {
"@type": "Person",
"name": "YourSite Team"
},
"publisher": {
"@type": "Organization",
"name": "YourSite.com",
"logo": {
"@type": "ImageObject",
"url": "https://yoursite.com/logo.png"
}
},
"datePublished": "2025-09-14",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://yoursite.com/where-to-watch-fmovies-legally-usa"
}
};
const script = document.createElement("script");
script.type = "application/ld+json";
script.text = JSON.stringify(schemaData);
document.head.appendChild(script);
console.log("✅ JSON-LD schema injected!");
});
// === Tracking Example (Histats/GA/Custom) ===
// Kamu bisa taruh tracking script di sini juga
(function() {
console.log("✅ Tracking script ready (contoh, ganti dengan GA/Histats).");
})();