Remove joe(.)ie "noscroll"

Remove joe(.)ie "noscroll"

For a while now, every time that I got to a joe (.) ie article, (A site I don’t particularly like), they have a “noscroll filter” which prevents you from scrolling.

This is more than likely due to the adblocking and tracking being disabled by default on the site. (Thanks Vivaldi)

So, I created this little script for Stylish or Stylus

Create a new style and paste the following in:

/* ==UserStyle==
@name           Joe.ie StopNoScroll - 1/9/2021, 1:47:23 AM
@namespace      github.com/crakila/joenoscroll
@version        1.0.0
@description    Get around the noScroll on Joe and scroll once more
@author         Crakila
==/UserStyle== */
@-moz-document domain("joe.ie") {
    @media (min-width: 767px) {
        .noscroll {
            overflow: unset;
        }
    }
}

(I will try to get the code up on GitHub tomorrow when I get my environment sorted)

(Photo by Antonio Manaligod on Unsplash)