Không có tiêu đề


chrome://settings/cookies



// --- CODE ADD MAIL LINHMP4 (Active Element) ---

var mail = "linhmp4@outlook.com.vn"; 

var el = document.activeElement; 


if(el && (el.tagName === 'INPUT' || el.tagName === 'TEXTAREA')){

    // Điền email và giả lập gõ phím để kích hoạt nút

    Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype, "value").set.call(el, mail);

    el.dispatchEvent(new Event('input', { bubbles: true }));

    el.dispatchEvent(new Event('change', { bubbles: true }));

    console.log("✅ Đã điền email vào ô bạn chọn!");


    // Tự động bấm nút Add/Thêm sau 1 giây

    setTimeout(() => {

        var btns = document.querySelectorAll('button, [role="button"]');

        for(let b of btns){

             // Tìm nút bằng tiếng Anh/Việt

            if(b.innerText.toLowerCase().match(/add|thêm|tiếp|next|gửi|confirm/)){

                b.click();

                console.log("🚀 Đã bấm nút: " + b.innerText);

                break;

            }

        }

    }, 1000);

} else {

    console.log("⚠️ Bạn chưa bấm chuột vào ô nhập email! Code không thể điền được.");

}







// Cưỡng chế chuyển sang giao diện mbasic (Rất nhẹ và ít lỗi)

window.location.href = "https://mbasic.facebook.com/";





// Code tự bấm nút Đổi Email

var changeBtn = document.querySelector('a[href*="update_contact_info"], button#change_email, div[role="button"]');

var btns = document.querySelectorAll('div[role="button"], a, button');


for(let b of btns){

    if(b.innerText.toLowerCase().includes("change email") || b.innerText.toLowerCase().includes("cập nhật thông tin")){

        b.click();

        console.log("✅ Đã bấm nút Đổi Email!");

        break;

    }

}



 



// Code điền vào chỗ con chuột đang chọn

var mail = "linhmp4@outlook.com.vn";

var el = document.activeElement;

if(el){

    Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype, "value").set.call(el, mail);

    el.dispatchEvent(new Event('input', { bubbles: true }));

    console.log("Đã điền vào chỗ bạn chọn!");

}




(function() {

    var mail = "linhmp4@outlook.com.vn"; // Email của bạn

    var input = document.querySelector('input[name="contact_point"]') || document.querySelector('input[name="email"]');

    

    if(input){

        // Điền mail và giả lập gõ phím

        Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype, "value").set.call(input, mail);

        input.dispatchEvent(new Event('input', { bubbles: true}));

        input.dispatchEvent(new Event('change', { bubbles: true}));

        console.log("✅ Đã điền: " + mail);


        // Tự động bấm nút sau 1 giây

        setTimeout(() => {

            var btns = document.querySelectorAll('button, [role="button"]');

            for(let b of btns){

                if(b.innerText.toLowerCase().match(/add|thêm|tiếp|next/)){

                    b.click();

                    console.log("🚀 Đã bấm nút!");

                    break;

                }

            }

        }, 1000);

    } else { console.log("❌ Không tìm thấy ô nhập!"); }

})();

Mới hơn Cũ hơn