Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Is there a way to get addon to work in reader view mode?

  • 2 replies
  • 1 has this problem
  • 3 views
  • Last reply by lsdoll02

more options

I can't use all addonn in reader view mode.

Is there a way to make it available? 
Thank you.
I can't use all addonn in reader view mode. Is there a way to make it available? Thank you.

Chosen solution

No, reader view uses the about:reader (about:reader?url=%s) page and extension do not work on about: pages. If you only want to modify the appearance then you can use CSS code in userContent.css (not userChrome.css).

@-moz-document url-prefix(about:reader){
 /* your CSS rules */
}

More info about userContent.css and userChrome.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

Read this answer in context 👍 0

All Replies (2)

more options

Chosen Solution

No, reader view uses the about:reader (about:reader?url=%s) page and extension do not work on about: pages. If you only want to modify the appearance then you can use CSS code in userContent.css (not userChrome.css).

@-moz-document url-prefix(about:reader){
 /* your CSS rules */
}

More info about userContent.css and userChrome.css in case you are not familiar: *https://www.userchrome.org/what-is-userchrome-css.html

more options

I understand. Thank you very much