Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Can I block the domain of an advertiser?

  • 5 trả lời
  • 1 gặp vấn đề này
  • 14 lượt xem
  • Trả lời mới nhất được viết bởi 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!

Tất cả các câu trả lời (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.