Certain Images
Certain Images
i looked around on here and cant find it so i was wondering how do i block a certain images name on any site there is... say i want to block "example-ad.gif" on any domain how would i do it?
im an adblock newb i know...
im an adblock newb i know...
I would be more specific, like:
Or even:
But you got the general idea 
Code: Select all
/example-ad.gif
Code: Select all
/example-ad.gif|

You may as well just drop thex218o7x wrote:alright, figured it would be that simple... know i feel thoroughly stupid, thanks for the help
one last question, say i want to block any image ending in the same letters say theres
387fj3fexamplead.gif
4897f34examplead.gif
f4j84vxexamplead.gif
mklk73hexamplead.gif
would /*examplead.gif| work?
Code: Select all
/
Code: Select all
*/*examplead.gif|

Use:
EDIT: It is implied that there is a wildcard at each end of a filter string UNLESS you either define that something must appear at the beginning or end of an address (that is what the "|" is for).
means that you will block anything that ENDS WITH examplead.gif .... removing the "|" will block the same thing ANYWHERE in the address.
The "/" will do nothing except make the string 'look' at everything that has a "/" in it because it is wildcarded on each end.examplead.gif|
EDIT: It is implied that there is a wildcard at each end of a filter string UNLESS you either define that something must appear at the beginning or end of an address (that is what the "|" is for).
Code: Select all
examplead.gif|
You are right of course, Peng, but the question was:Peng wrote:examplead.gif| will also block stuff like "myexamplead.gif". If you don't want that, use /examplead.gif|.
Code: Select all
say i want to block any image ending in the same letters say theres
387fj3fexamplead.gif
4897f34examplead.gif
f4j84vxexamplead.gif
mklk73hexamplead.gif
would /*examplead.gif| work?
