搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 2 回覆
  • 1 有這個問題
  • 54 次檢視
  • 最近回覆由 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