Is there a way to get addon to work in reader view mode?
I can't use all addonn in reader view mode.
Is there a way to make it available? Thank you.
Избрано решение
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
Прочетете този отговор в контекста 👍 0Всички отговори (2)
Избрано решение
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
I understand. Thank you very much