Detect recaptcha on a website opened in firefox

HyperEVmedia

Regular Member
Joined
Jan 5, 2017
Messages
229
Reaction score
303
Hi guys,

I need a simple script and I want to do it myself, just not sure what is the best approach.

I have a webpage opened in a firefox tab, where ocassionally a recaptcha pops up.

The goal:
The script should detect when a recaptcha pops up, and should start an external program of my choice when that happens.

Any ideas where to start?
 
For example, you can use imacros + js code:
JavaScript:
var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
file.initWithPath("C:\\tool.exe");
file.launch();
 
Back
Top