This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
alert("⌛ سيتم إلغاء أول أمر خلال 3 ثواني..."); | |
setTimeout(function(){ | |
const cancelLink = [...document.querySelectorAll('a')].find(a => a.innerText.includes("❌")); | |
if (cancelLink) { | |
cancelLink.click(); | |
} else { | |
alert("❌ لا يوجد زر إلغاء ظاهر في هذه الصفحة."); | |
} | |
}, 3000); |