22/04/2026
// Nội dung caption bạn muốn thêm
const myCaption = "Hữu Duyên ban vía may mắn! ";
// Tìm tất cả các ô mô tả (thường có thuộc tính contenteditable)
let descriptionBoxes = document.querySelectorAll('[contenteditable="true"]');
descriptionBoxes.forEach((box, index) => {
// Giới hạn chạy cho 20 video đầu tiên (nếu có nhiều hơn)
if (index < 20) {
box.focus();
// Xóa trắng nội dung cũ trước khi điền mới
document.execCommand('selectAll', false, null);
document.execCommand('delete', false, null);
// Điền nội dung mới
document.execCommand('insertText', false, myCaption);
// Kích hoạt sự kiện để Meta hiểu là đã có chữ
box.dispatchEvent(new Event('input', { bubbles: true }));
box.dispatchEvent(new Event('blur', { bubbles: true }));
}
});
console.log("Đã điền xong caption cho 20 video!");