Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Unable to access a Website jpg list

  • 2 ответа
  • 1 имеет эту проблему
  • 5 просмотров
  • Последний ответ от 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

Изменено cor-el

Выбранное решение

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.

Прочитайте этот ответ в контексте 👍 1

Все ответы (2)

more options

Выбранное решение

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

Изменено cor-el