Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 2 ответа
  • 1 имеет эту проблему
  • 65 просмотров
  • Последний ответ от 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.

Выбранное решение

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)

more options

Выбранное решение

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