let div = document.createElement("div");
div.innerHTML = ``;
div.id = "embed-map";
document.querySelector("[aria-label='footer']").after(div);
(function() {
document.addEventListener("DOMContentLoaded", function() {
let links = document.querySelectorAll("a");
links.forEach(link => {
let url = new URL(link.href, window.location.origin);
if (!url.pathname.endsWith("/") && !url.pathname.includes(".")) {
link.href = url.pathname + "/" + url.search + url.hash;
}
});
// إعادة توجيه الصفحة الحالية إذا لم يكن بها "/"
if (!window.location.pathname.endsWith("/") && !window.location.pathname.includes(".")) {
window.history.replaceState(null, "", window.location.pathname + "/" + window.location.search + window.location.hash);
}
});
})();