Skip to content

Instantly share code, notes, and snippets.

View yousef9000's full-sized avatar

yousef9000

  • Joined Jun 17, 2025
View GitHub Profile
(function(){
alert("⌛ سيتم إلغاء أول أمر خلال 3 ثواني...");
setTimeout(function(){
const cancelLink = [...document.querySelectorAll('a')].find(a => a.innerText.includes("❌"));
if (cancelLink) {
cancelLink.click();
} else {
alert("❌ لا يوجد زر إلغاء ظاهر في هذه الصفحة.");
}
}, 3000);