feat : attempt to bypass bot detection

This commit is contained in:
martin legrand
2025-05-14 21:43:13 +02:00
parent 4739a1377c
commit 201b3de15c
3 changed files with 266 additions and 15 deletions
+1 -3
View File
@@ -21,7 +21,5 @@ window.fetch = function() {
console.log('Blocked fetch request');
return Promise.reject('Blocked');
};
// Block annoying dialogs
window.alert = function() {};
window.confirm = function() { return false; };
window.prompt = function() { return null; };