Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Unable to access a Website jpg list

  • 2 odpovede
  • 1 má tento problém
  • 5 zobrazení
  • Posledná odpoveď od 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

Upravil(a) cor-el dňa

Vybrané riešenie

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.

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (2)

more options

Vybrané riešenie

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

Upravil(a) cor-el dňa