| Title |
Type |
Brief |
| IEStart |
MFC dialogbox |
For debugging BHO, accepts two optional arguments:
/url: The initial URL
/bho: The class id of BHO (must be formated like {....})
|
| AutoGmail |
MFC dialogbox |
Auto GMail login. Take two arguments:
1. email addres, eg abc@gmail.com
2. password
|
| WBEHook |
MFC/ATL dialogbox |
Use exteral script (js or vbs) to process web event DISPID_DOCUMENTCOMPLETE. Takes two command line arguments:
1. The initial URL.
2. script file name (js or vbs)
function DocumentComplete(web, url)
{
if(url.indexOf("http://www.google.")!=0)
{
return;
}
if(web.GetProperty("searchdone"))
{
return;
}
web.PutProperty("searchdone", 1);
var doc=web.Document;
if(doc.forms.length<1)
{
return;
}
var fm=doc.forms[0];
if(!fm.q)
{
return;
}
fm.q.focus();
fm.q.value=hh.GetAppArg(0);
if(fm.q.value.length<1)
{
fm.q.value="Funny Things";
}
hh.KeyStrokes(doc, "\r");
}
|
| FunBHO |
ATL, BHO£¬DLL |
Create a layered window above IE. |
| MFBeetle |
ATL, MIME Filter£¬DLL |
Insert HTML/JavaScript into the web page IE is opening. |
| No SC |
ATL, BHO£¬DLL |
Disable IE menus and shortcuts for two minutes |
| SuperBar |
ATL, BHO£¬DLL |
A toolbar created and owned by your self alone |
| IE Win Cap |
ATL, BHO£¬DLL |
IE window image capturing |