FAQ - Basic functionality

How do I block a banner?

You can right-click on any image or frame and choose "Adblock" from the context menu. This will open a dialog where you can tweak the new filter before adding. Feel free to replace parts of the banner's address by wildcards (* — the star symbol) to make the filter block other banners with similar addresses as well. For more information you can read Writing Adblock Plus filters.

I sometimes want Adblock Plus to be disabled. How can I do this most easily?

You can click the Adblock Plus icon in the toolbar to bring up the menu. There you have the option to disable/reenable Adblock Plus for the website you are visiting by simply clicking the related slider and then click “refresh”.

It will add an exception rule like @@||adblockplus.org^$document to your list of filters. You can find more information on exception rules in Writing Adblock Plus filters.

If you want to disable Adblock Plus on all websites, follow these instructions: Disabling/Reenabling Adblock Plus on all Websites.

Can I support my favorite website by downloading but hiding ads?

No. Most advertisers pay per-click, so if you hide ads, you won't actually support the site in question. Even in the off-chance of payouts per-view, it's trivial for advertisers to use JavaScript to check if the ads are visible. Additionally, downloading but hiding ads to trick advertisers into paying would be akin to fraud.

In short, if you want to support your favorite websites, you'll have to whitelist them to disable Adblock Plus on those sites.

How can I update my filterlist manually?

In Firefox:

  1. Select Firefox >> Add-ons (for Mac OS X / Linux, select "Tools" from the menubar >> "Add-Ons"), this will open your Firefox Add-ons Manager.
  2. Click on "Extensions", find Adblock Plus there, go to "Options" and then click on "Filter preferences...".
  3. Press this shortcut key to update all filter susbcription at once: Ctrl+Shift+T or right-click a filter subscription and choose "Update filters".

In Chrome:

  1. Click the Chrome menu button, then go to "Tools" and choose "Extensions".
  2. Find Adblock Plus there and click on "Options" under its description.
  3. Click the "Update now" button.

In Opera:

  1. Click the "Menu" button (for Mac OS X / Linux, "Tools"), select "Extensions" >> "Manage Extensions".
  2. Find Adblock Plus there and click its small tool-icon on the right side and choose "Preferences".
  3. Click the "Update now" button.

How can I remove a filterlist?

In Firefox

Go to Tools >> Add-Ons >> Preferences (next to Adblock Plus) >> Filter Preferences. Select the filterlist you want to delete, click on the "Action" button, and select "Delete". Click on "OK" to confirm.

In Google Chrome

Go to Window >> Extensions >> Options (of the Adblock Plus extension). Click on the red "X" next to the filterlist you want to delete, and click "OK" to confirm.

In Opera (on Windows/Ubuntu)

Click on the menu button and go to Extensions >> Manage Extensions >> Click on the tool-icon >> Preferences. Click on the red "X" next to the filterlist you want to delete, and click "OK" to confirm.

In Opera (on Mac OSX)

Go to Tools >> Extensions >> Manage Extensions >> Click on the tool-icon >> Preferences. Click on the red "X" next to the filterlist you want to delete, and click "OK" to confirm.

The banner is an object (Flash or Java) and doesn't have a context menu. What now?

Adblock Plus has an option called "Show tabs on Flash and Java". When activated (the default) it will display a button saying "Block" at the upper right (lower right if there isn't enough space) corner of every object. Clicking this button will block the object.

Alternatively you can open the list of blockable items (press Ctrl+Shift+V or click the dropdown arrow next to the ABP toolbar icon and choose Open blockable items) and look for an object there.

You can click the Type column header — this will sort the list by type and make finding objects easier.

The list of blockable items shows many addresses. How do I know which one is the banner?

You can look for addresses that start differently than the address of the page you are viewing. Banners also typically have keywords like "banner" or "ad" in their address. Click an address to make the corresponding element(s) blink on the page (unfortunately this doesn't work for all types of objects). If you are still unsure, press the middle mouse button on the address to open it in a new tab — there you will definitely see whether it is a banner.

Is the order of filters relevant for performance?

No. When Adblock Plus tests an address against your list of filters it determines the best order in which filters should be tested automatically, in fact most of the filters won't be considered at all. The order of filters you can change in the Preferences dialog is for your convenience only, it has no impact on the performance.

Are regular expressions faster than "normal" filters?

Usually this is not the case. Adblock Plus will transform any "normal" filter into a regular expression, and internally it will work only with regular expressions — there is no difference between the filters banner and /banner/.

Regular expressions are often used to "compress" the filters list and replace several filters by one regular expression. The rule of thumb says "fewer filters means faster" but it isn't always correct in this case. Complicated regular expressions require much time to be evaluated, it might be faster to use several simple ones.

Regular expression give you more flexibility however, that's where their use is always justified. For example the regular expression /adv(?!ice)/ will block adv and advert and advertisement but not advice — something you couldn't have done with simple wildcards.