Page 1 of 8
adblock.ini on fanboy.co.nz EOL
Posted: Sat Nov 06, 2010 10:22 pm
by fanboy
I've been maintaining the
Iron adblock.ini list for a while now, and the chrome adblock extensions has become feature-full enough to be used instead of the builtin adblock block. From the 1st Jan 2011 support for iron blocklist will be stopped.
Given the fact chrome now supports adblock for chrome, I'm looking at EOL (end of life) for iron chrome on the 1st Jan 2011. Though it wouldn't take much to convert any opera lists over to iron, though my recommendation would be use
Adthwart or
Chrome adblock.
Maintaining the platform has been great, but with lack of any development in the adblock tool in iron hasn't helped trying to maintain the list. Whitelists for example? Disabling filters for selected websites, turning off the adblock? The list will still be available and hosted on the site, It just wont be updated from the 1st of Jan.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 12:30 am
by ironuser
I'm sorry to hear of this, though I understand it is a task to keep at it. The built in adblock.ini and your list both do a lot better job in Iron for me than the Chrome extensions and the list(s) it requires. I'll look into a conversion of the Opera list. Where do I find that?
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 12:43 am
by fanboy
http://fanboy.co.nz/adblock/opera/ lists are very similar to Iron, apart from wildcards. I'll sync the lists over the coming days.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 1:07 am
by tryforsure
With the fantastic resource that you already provide and maintain I'm surprised that you have had time to tailor make different versions for different applications, I very much appreciate it.
I, also, think that you should, consider, consolidating your lists into one and let lazy users work out how to import it to their individual environments.
Thanks a lot for the effort that you have put into this constantly useful resource.
Regards
Dazbo
P.S. I currently use your lists in 9 applications on 2 different operating systems and I recommend it to everyone I know.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 2:05 am
by ironuser
I have a suggestion. Since Iron comes with the adblock.ini. , maybe someone at SRWare can convert fanboy's Opera list, and offer it as a daily or by-weekly update.
I can manually edit the Opera list to remove the asterisk's and Opera relate things, but I'm not sure I can do it within the adblock_update.vbs file.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 5:16 pm
by ironfan
I just replaced '*' in urlfilter.ini with nothing, saved it as adblock.ini for Iron and it works.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 7:13 pm
by ironfan
Also replacing # via editor by #[blank] is a good idea.
Re: adblock.ini on fanboy.co.nz EOL
Posted: Sun Nov 07, 2010 11:19 pm
by ironuser
Yeah, that worked for me as well. Now I'm trying to get the adblock_update.vbs script to do that for me as it loads it into the Iron Folder. I just don't remember my VBS scripting. Too long ago!
Re: adblock.ini on fanboy.co.nz EOL
Posted: Mon Nov 08, 2010 2:27 pm
by ironfan
My simple workaround via wsh (windows script host) Windows XP:
First save urlfilter.ini at your place (here assumed E:/IronPortable/Iron/ ) on harddisc.
Save this code as file *.js (perhaps E:/IronPortable/Iron/wsh_fanboy.js) and start it via 'open with'->Microsoft (R) Windows Based Script Host:
Code: Select all
fso = new ActiveXObject("Scripting.FileSystemObject");
a=fso.GetFile('E:/IronPortable/Iron/urlfilter.ini');
b=a.OpenAsTextStream(1,0);
c=b.ReadAll();
c=c.replace(/\*/g,"");
c=c.replace(/#/g,"# ");
x=fso.CreateTextFile("E:/IronPortable/Iron/adblock.ini", true);
x.Write(c);
b.Close();
x.Close();
This generates a - so far as I see - working adblock.ini from urlfilter.ini .
Re: adblock.ini on fanboy.co.nz EOL
Posted: Mon Nov 08, 2010 6:11 pm
by bulek
ironuser wrote:The built in adblock.ini and your list both do a lot better job in Iron for me than the Chrome extensions and the list(s) it requires.
You don't have to use the lists that are turned on in the extension by default. I have unsubscribed them and subscribed to fanboy's lists. The filtering therefore works as with built-in engine. It's good the extensions can now block the elements actually than just hiding them as they did before.