I dont know about you guys but i have noticed that for me the Iron works fastest without ANY adblocks.
Kind of weird, i mean shouldnt it take longer to load all those ads etc. than to block them

I've found that I need to finesse the resulting file manually to get it to work in SRWare Iron without crashing; merely pulling out the asterisks isn't enough because of the filters with asterisks in the middle. It's not a massive concern to me because once that one Chromium issue is worked out, both Adblock extensions will be able to block content perfectly, just like Safari Adblock, and then this browser will only be for those paranoid about Google spying on them because its advantage in content-blocking will be negated.ironuser wrote:@LigerTiger<<
What is so hard about going to the page for the Fanboy list, RIGHT CLICK and SELECT 'SaveAs', CLICK OK, then NAVIGATE to your Iron install folder, and CHANGE THE NAME OF THE FILE IN THE 'SaveAs' Window to adblcok.ini, then save it?
If it asks you to overwrite something already there, say yes.
PS: NOTE!!!! >>> Adthwart as NOW PART of Adblock Plus, and you STILL have to manage your subscriptions to the list(s) you want to use!
Also, you can SELECT ALL the code below and COPY AND PASTE to a Notepad document, and save it to your desktop as adblock-update.js
Close Iron, and double click it, and it SHOULD save it to your Iron folder(IF I HAVE GUESSED RIGHT).
Click it once every few days to get an updated list.
<<<<< Code is thanks to Ironfan from this thread(or another, I forget)Code: Select all
http = new ActiveXObject("Microsoft.XMLHTTP") fso = new ActiveXObject("Scripting.FileSystemObject") f=fso.CreateTextFile(file="C:/Program Files/SRWare Iron/adblock.ini", true) W=new Array("https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter.ini", "https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-stats.ini", "https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-rus.ini") i=0,txt="\t"+W[0] while(i<W.length) { if(i) txt+="\nAND\t"+W[i] http.open("GET", website=W[i++], false) http.setRequestHeader("Accept","text/html") http.send() f.Write(http.responseText.replace(/\*/g,"").replace(/#/g,"# ")) } WScript.Echo(txt+"\n\n\t\tis replaced and added to\n\n\t\t"+file) f.Close()
What do you mean by tracking?fanlynne wrote:Most of googles extentions enable the tracking, and i asked if this does too, but they won't answer me. Speaking of which, it made my last post sound a bit offense, cuz it re-arranged the wording
i copied and pasted this from a post i made about google add-ons tracking you.fanlynne wrote:Most of googles extentions enable the tracking, and i asked if this does too, but they won't answer me. Speaking of which, it made my last post sound a bit offense, cuz it re-arranged the wording
Code: Select all
http = new ActiveXObject("Microsoft.XMLHTTP")
fso = new ActiveXObject("Scripting.FileSystemObject")
f=fso.CreateTextFile(file="... your destination .../adblock.ini", true)
W=new Array("https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter.ini",
"https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-stats.ini",
"https://fanboy-adblock-list.googlecode.com/hg/opera/urlfilter-rus.ini")
i=0,txt="\t"+W[0]
while(i<W.length)
{
if(i) txt+="\nAND\t"+W[i]
http.open("GET", website=W[i++], false)
http.setRequestHeader("Accept","text/html")
http.send()
f.Write(http.responseText.replace(/\*/g,"").replace(/#/g,"# "))
}
WScript.Echo(txt+"\n\n\t\tis replaced and added to\n\n\t\t"+file)
f.Close()