Reply To: The absolute best filter – for InternetExplorer only

Home Forums Computers / Electronics / Online The absolute best filter – for InternetExplorer only Reply To: The absolute best filter – for InternetExplorer only

#878827
HaLeiVi
Participant

Here goes:

fs = new ActiveXObject("Scripting.FileSystemObject")
ws = new ActiveXObject("WScript.Shell")

reg = "Windows Registry Editor Version 5.00"
reg += "[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\&Toss Image]"
reg += ""Contexts"=dword:00000002"
reg += "@="file://C:\\Program Files\\YummyPrograms\\ridPic.htm""

htm = "<SCRIPT>rn"
htm += " external.menuArguments.event.srcElement.style.filter = "alpha(opacity=0)"rn"
htm += "</SCRIPT>"

fol = "C:\Program Files\YummyPrograms"
if (!fs.folderExists(fol)) fs.CreateFolder(fol)
hnm = fol + "\" + "ridPic" + ".htm"
if(!fs.fileExists(hnm))
{
fl = fs.OpenTextFile(hnm, 2, true)
fl.Write(htm)
}
else {
ws.popup("BestFilter is already installed. How could you have not noticed!?", 5, "Best Filter Installer", 0);
WScript.Quit();
}
menu = "Toss&-Image"
key = "HKCU\Software\Microsoft\Internet Explorer\MenuExt\" + menu + "\"
ws.RegWrite(key, "file://" + fol + "\ridPic.htm")
ws.RegWrite(key + "Contexts", "00000002", "REG_DWORD")

ws.popup("BestFilter is now succesfully installed. Happy holying.", 5, "Best Filter Installer", 0)

To disable images in general, go to Internet Options, then click on the Advanced tab. Scroll down until you see the option for images. For Flash videos, go to Internet Options, then Programs. Click on the ‘Manage Add-ons’ tab and disable Flash.