Reader View

Strips away clutter like buttons, background images, and changes the page's text size, contrast and layout for better readability

Vad är Reader View?

Reader View är en Chrome-tillägg utvecklad av yokris.dev, och dess huvudfunktion är "Strips away clutter like buttons, background images, and changes the page's text size, contrast and layout for better readability".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Reader View-förlängningens CRX-fil

Ladda ner Reader View-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Reader View extension brings Mozilla's open-source Readability implantation to Chromium. Using this extension you can strip clutters from webpages and read them on "Reader View" mode. The extension allows you to toggle between normal view and reader view by pressing the page-action button.

Note that reader view mode works best for web pages that have a lot of content. There are some tools in the left side panel that can help you personalize your Reader View. You can change color, background-color, font-size, font-family and width of the reader view.

Features:
-> Remove distraction
-> Read in fullscreen mode
-> Remove advertisements
-> Save in HTML format
-> Print document
-> Read content using a powerful Text to Speech (TTS) engine
-> Edit HTML content (live editor)
-> Email document (with title, body, and reference to the original document)
-> Correctly display mathematical formulas (MathJax equations are Supported)
-> Highlight selected text
-> Move to the next and previous pages
-> Keyboard shortcuts for almost all actions
-> Resize images on the design-mode
-> Display DOI (Digital Object Identifier) details
-> Display publish date
-> Add persistent sticky notes
-> Bionic Reading
-> Adjust number of columns

*** 0.6.x releases ***
The extension is now running on manifest v3! Make sure you have the latest version of your browser to use this extension (The minimum acceptable Chrome version is 104). There are a few changes to make it compatible, so please report bugs if you see broken features.

For more info please visit:
https://github.com/rNeomy/reader-view/

Change Log:
0.1.3: Calling a reader view by restoring it from history will trigger history.back
0.1.4: A more visible icon. Fixes a reader bug.
0.1.5: It is now possible to toggle the reader view using keyboard shortcut (define one from Chrome's settings page)
0.2.1: Document parsing is improved. Switched to the latest Readibility.js library. Ctrl + S now saves the document same as pressing the "Save" button. Reader View now supports both rtl and ltr languages
0.2.2: It is now possible to select some content and ask the reader view to convert only the selected part. This is useful if the automatic selection tool is not detecting the content correctly.
0.2.4: Speech engine is added. You can now ask the extension to read the article for you. Estimated reading time is displayed below the article title                    

Grundläggande Information om Tillägg

Namn Reader View Reader View
ID ecabifbgmdmgdllomnfinbmaellmclnh
Officiell webbadress https://chromewebstore.google.com/detail/reader-view/ecabifbgmdmgdllomnfinbmaellmclnh
Beskrivning Strips away clutter like buttons, background images, and changes the page's text size, contrast and layout for better readability
Filstorlek 280 KB
Antal Installationer 343,622
Aktuell Version 0.7.5
Senast Uppdaterad 2023-12-24
Publiceringsdatum 2020-03-29
Betyg 4.68/5 Totalt 982 Betyg
Utvecklare yokris.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://webextension.org/listing/chrome-reader-view.html
Hjälpsida URL https://webextension.org/listing/chrome-reader-view.html
URL till Sekretesspolicy Sidan https://add0n.com/policies/yokris.dev.txt
Stödda Språk de,en,fr,nl,da,et,hu,fi,cs,el,bg,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reader View",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.7.5",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "notifications",
        "declarativeNetRequestWithHostAccess"
    ],
    "optional_permissions": [
        "favicon"
    ],
    "optional_host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "homepage_url": "https:\/\/webextension.org\/listing\/chrome-reader-view.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "incognito": "split",
    "commands": {
        "_execute_action": [],
        "toggle-reader-view": {
            "description": "Toggle the Reader View"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/reader\/template.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}