ZachSaucier / Just-Read

A customizable read mode web extension.
https://justread.link/
1.21k stars 137 forks source link

northwestern.edu page does not respond to extension #330

Closed tbc closed 4 years ago

tbc commented 4 years ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce

  1. Go to https://www.northwestern.edu/leadership-notes/2020/weekend-protests-in-evanston.html
  2. Try to make the page respond to Just-Read

Expected behavior Just-Read to change the display for easy reading

ZachSaucier commented 4 years ago

Hey tbc. Very interesting. This site has the following style rule:

footer ~ iframe { display: none !important; }

So since Just Read uses an iframe and appends it to the end of the page, the rule above hides the Just Read view.

If you read on this webpage regularly you can use an extension like Stylebot (which lets you customize the CSS of websites for yourself) and add a custom CSS rule to override this style:

#simple-article {
    display: block !important;
}

If you don't read from this website regularly, I recommend that you just leave it as is 🙂 It's not worth me adding a workaround in the CSS of Just Read for this case I don't think.