確認ダイアログを自動でクリックする方法(tampermokey) | TOTTIO

確認ダイアログを自動でクリックする方法(tampermokey)

未分類
この記事は約1分で読めます。

Tampermonkey などの処理で、確認ダイアログ(アラートメッセージ)がポップアップしてきた場合、確認ボタンをJavascript側でクリックするという処理ができない。

調べたところ、その場合は、confirm メソッドをオーバーライドすることで 確認ダイアログをポップアップさせずに、ボタンをクリックさせたことにすることが可能となる。

 var realConfirm=window.confirm;
window.confirm=function(){
window.confirm=realConfirm;
return true;
};

参考記事

How to automatically click a confirm box?
My script clicks an image on a site. The image has an anchor href and an onclick href, but the onclick href has a confir...
You.com | AI for workplace productivity
Leverage a personal AI search agent & customized recommendations with You.com's AI chatbot. Converse naturally and disco...
タイトルとURLをコピーしました