Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Can I block the domain of an advertiser?

  • 5 antwoorden
  • 1 heeft dit probleem
  • 12 weergaven
  • Laatste antwoord van Wesley Branton

more options

I have been experimenting with blocking elements with adblockers and its remarkable how you can shape the page to what you want, especially eliminating space wasting toolbars that don't disappear when you scroll down or appear when you scroll up moving everything with a vertical jerk. But sometimes I'm a little too aggressive and remove too much rendering the page unusable. Some display the elements you have removed but others don't. This got me thinking about using F12 in Firefox to control what elements I want. Is this a better way?

And is there a way of blocking an advertiser system wide on Firefox? There's a few advertisers that are just painful and just blanket their ads everywhere. It would be great to block them on all websites. We're talking real parasites here!

I have been experimenting with blocking elements with adblockers and its remarkable how you can shape the page to what you want, especially eliminating space wasting toolbars that don't disappear when you scroll down or appear when you scroll up moving everything with a vertical jerk. But sometimes I'm a little too aggressive and remove too much rendering the page unusable. Some display the elements you have removed but others don't. This got me thinking about using F12 in Firefox to control what elements I want. Is this a better way? And is there a way of blocking an advertiser system wide on Firefox? There's a few advertisers that are just painful and just blanket their ads everywhere. It would be great to block them on all websites. We're talking real parasites here!

Alle antwoorden (5)

more options

You can block specific domains using the WebsiteFilter policy like this:

{
  "policies": {
    "WebsiteFilter": {
      "Block": ["*://*.ihatetheseguys.net/*"]
    }
  }
}

I outlined this in a lot more detail on this previous thread. You can also refer to Customizing Firefox Using policies.json or Customizing Firefox Using Group Policy (Windows) for more general steps.

Alternatively, you may want to find a website blocking add-on instead.

Hope this helps.

more options

Hey Wesley, those sound like great solutions. It would be so much better to control things by the browser itself instead of relying on fickle extensions. Thank you very much.

more options

It sounds like the WebsiteFilter policy is what you want then, since it's programmed into Firefox and doesn't require any extensions.

more options

Upon rereading this it appears that this is for typed in URL's. I need something that will prevent ads from specific URL's. Isn't that different? BTW, you mentioned this site:

https://github.com/mozilla/policy-templates/blob/master/README.md#websitefilter

and on this site it mentions

Software\Policies\Mozilla\Firefox\WebsiteFilters\Block\1 = "<all_urls>"

Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example.org/*"

I could not find any folder called Policies on C drive on my updated Win7 build. Or is this for Win10?

more options

This policy applies to any attempt to load the website, not just ones that you manually visit.

You are looking for the C:\Windows\PolicyDefinitions folder. If you have that on your computer, you can put these two ADMX files there.

If not, you will need to create a policies.json file and then use the JSON code to apply this blocker.

Hope this helps.