I did not find any references to Reader View in any of the SDK APIs listed in the documentation. In particular, I want to enter Reader View automatically, on page load, as long as a toggle button in my add-on is checked. How can I send this message to the browser?
How can my add-on interface with Firefox Reader View?
151 Views Asked by Joseph At
1
There are 1 best solutions below
Related Questions in FIREFOX-ADDON
- Firefox SDK Add-on - How to start
- Copy to clipboard from Firefox add-on content script
- return of CERT_FindUserCertByUsage in javascript
- Js-ctypes third part dll with string return
- Multi-platform deployment of a Firefox extension
- How get all cookies in the given url using javascript or selenium?
- Manual adding firefox for android addon
- Variable is not defined error in my Firefox extension
- How can open Firefox developer tools in my extension's sidebar?
- Warning popup window for add-on installation
- Firefox Addons and message passing
- Is it possible to take screenshots from Firefox for Android extension?
- Blank Firefox addon panel page with multiple windows
- nsICacheService doesn't work in Firefox 38
- Cant load youtube api in frame
Related Questions in FIREFOX-ADDON-SDK
- Get youtube video information using javascript and Youtube-API
- Firefox SDK Add-on - How to start
- Copy to clipboard from Firefox add-on content script
- Multi-platform deployment of a Firefox extension
- How can open Firefox developer tools in my extension's sidebar?
- Warning popup window for add-on installation
- Firefox Addons and message passing
- Is it possible to take screenshots from Firefox for Android extension?
- Blank Firefox addon panel page with multiple windows
- FIrefox add-ons and running executable binaries
- Firefox add-on SDK -- "TypeError: can't convert null to object" Only on some computers
- Firefox's add-on SDK: no tooltip for context-menu?
- FF Addon SDK read of post data just hangs on login data only
- How to show/hide sidebar from panel
- Errors in Firefox Add-on SDK when using cfx xpi whereas cfx run works great
Related Questions in FIREFOX-READER-VIEW
- Optimize website to show reader view in Firefox
- HTML Minification kills Reader view?
- How can my add-on interface with Firefox Reader View?
- Force reader view in browser / Modify the content of all a tags in JS
- How to disable firefox's reader view from my website?
- How does Firefox reader view operate
- How to Disable Browser Reader view for WordPress site
- Provide an equivalent to Firefox's reader view from the site itself
- How to edit CSS / Styling of Firefox Reader View
- Reader view breaks Javascript protecting images from right-click
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To enter reader view, all you have to do is change the tab's URL to
about:reader?url={siteURL}, where{siteURL}would be replaced with the URL to the page you want the reader to display.