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

Unable to access a Website jpg list

  • 2 trả lời
  • 1 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

Accessing :Politico.com there is a Politico Wuerker cartoon 'list'. The first item is always available. To migrate to any following item on the list I get a "you may skip ad in" with no further text. In the past, refresh would allow the next cartoon to be shown. Now, refresh returns to the first cartoon.

Current operation:

  1. Select the URL above
  2. Select any of the numbered bubbles on the bottom or the right 'arrow'
  3. "you may skip ad in" is displayed.
  4. Select refresh, and we start over.

In the past, refresh would migrate to the next jpg image.

On microsoft edge, in the past, (1) there was a right block arrow, (2) clicking on the arrow gets you to the "you may skip ad in" message, and displayed with this is a check box to allow skipping the ad.

As just a curiosity, why did Firefox elect to change the right block arrow to a rectangular black image?

thanks

Accessing :[https://www.politico.com/cartoons/2021/05/03/may-2021-000191?slide=0 Politico.com] there is a Politico Wuerker cartoon 'list'. The first item is always available. To migrate to any following item on the list I get a "you may skip ad in" with no further text. In the past, refresh would allow the next cartoon to be shown. Now, refresh returns to the first cartoon. Current operation: # Select the URL above # Select any of the numbered bubbles on the bottom or the right 'arrow' # "you may skip ad in" is displayed. # Select refresh, and we start over. In the past, refresh would migrate to the next jpg image. On microsoft edge, in the past, (1) there was a right block arrow, (2) clicking on the arrow gets you to the "you may skip ad in" message, and displayed with this is a check box to allow skipping the ad. As just a curiosity, why did Firefox elect to change the right block arrow to a rectangular black image? thanks

Được chỉnh sửa bởi cor-el vào

Giải pháp được chọn

This works properly for me if I disable Enhanced Tracking Protection and I get the button to skip the ad.

Firefox shows a purple shield instead of a gray shield at the left end of the location/address bar in case Enhanced Tracking Protection is blocking content. You can click shield icon for more detail and possibly disable the protection. You can check the Web Console for messages about blocked content.

Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

This works properly for me if I disable Enhanced Tracking Protection and I get the button to skip the ad.

Firefox shows a purple shield instead of a gray shield at the left end of the location/address bar in case Enhanced Tracking Protection is blocking content. You can click shield icon for more detail and possibly disable the protection. You can check the Web Console for messages about blocked content.

more options

You can possibly hide the ads via code in userContent.css leaving only the timer message and the skip button.

Add code to the userContent.css file.


@-moz-document domain(www.politico.com){
 iframe[id^="google_ads_iframe"] {
    opacity: 0;
 }
#OUTBRAIN {display:none !important;}
}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

Được chỉnh sửa bởi cor-el vào