document.addEventListener("DOMContentLoaded", function() {
// Lấy tất cả các thẻ trên trang
let images = document.querySelectorAll('img');
// Duyệt qua từng thẻ
images.forEach((img) => {
// Kiểm tra nếu thẻ có thuộc tính src
if (img.src && img.src.includes('https://p16-ulike-sg.ibyteimg.com/')) {
// Thay thế phần URL cũ bằng URL mới
img.src = img.src.replace('https://p16-ulike-sg.ibyteimg.com/', 'https://p16-ad-sg.ibyteimg.com/');
}
});
});