Hello guys,
This is my first contribution to the BHW and I hope that you'll like it. Script is pretty straight forward, it only looks for 'Confirm' buttons in browser and then clicks on them. Its a simple script that will save you from all of the boring clicking on Confirm.
P.S. To make it work, paste it into the Chrome's developer console (or Mozilla's Firebug console).
This is my first contribution to the BHW and I hope that you'll like it. Script is pretty straight forward, it only looks for 'Confirm' buttons in browser and then clicks on them. Its a simple script that will save you from all of the boring clicking on Confirm.
PHP:
var buttons = document.getElementsByClassName('phl')[0].getElementsByTagName('button'); for (var i=0;i<buttons.length;i++) { if(buttons[i].textContent = 'Confirm') {buttons[i].click();} }
P.S. To make it work, paste it into the Chrome's developer console (or Mozilla's Firebug console).