With the latest edition of Firefox, they have integrated the Pocket "reader", which when activated will load a "reading" version of the original page at an URL like about:reader?....
However user scripts are not allowed for about pages, including the about:reader.
I've made a small hack in modules/util/isGreasemonkeyable.js, by adding a line like the one below just after if (/^about:blank/.test(url)) return true;:
if (/^about:reader(\?.*)?$/.test(url)) return true;
With the latest edition of Firefox, they have integrated the Pocket "reader", which when activated will load a "reading" version of the original page at an URL like
about:reader?....However user scripts are not allowed for
aboutpages, including theabout:reader.I've made a small hack in
modules/util/isGreasemonkeyable.js, by adding a line like the one below just afterif (/^about:blank/.test(url)) return true;: