Smart Reader - Bionic Reader

Modify a web page to make it more readable

What is Smart Reader - Bionic Reader?

Smart Reader - Bionic Reader is a Chrome extension developed by Poucous, and its main feature is "Modify a web page to make it more readable".

Extension Screenshots

screenshot
screenshot
screenshot

Download Smart Reader - Bionic Reader Extension CRX File

Download Smart Reader - Bionic Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        SmartReader or Bionic Reader changes a web page to make it more readable by bolding the beginning of a word (like bionic reading).

You just need to install and enjoy.

Github : https://github.com/Poucous/smartReader

Note : the extension will evolve according to its use                    

Extension Basic Information

Name Smart Reader - Bionic Reader Smart Reader - Bionic Reader
ID cgkfhliknoajpncfpnbmknalklgiekdj
Official URL https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj
Description Modify a web page to make it more readable
File Size 84.48 KB
Installation Count 1,057
Current Version 1.6
Last Updated 2022-10-05
Publish Date 2022-06-07
Rating 3.50/5 Total 6 Ratings
Developer Poucous
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart Reader - Bionic Reader",
    "manifest_version": 3,
    "version": "1.6",
    "description": "Modify a web page to make it more readable",
    "icons": {
        "48": "\/icons\/smartReader-48.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/content_scripts\/assembleElements.js",
                "\/content_scripts\/filterElements.js",
                "\/content_scripts\/isThisTag.js",
                "\/content_scripts\/modifyHtml.js",
                "\/content_scripts\/removeBold.js",
                "\/content_scripts\/textAtRoot.js",
                "\/content_scripts\/isAddonActived.js",
                "\/content_scripts\/isItLetter.js",
                "\/content_scripts\/updatePage.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "\/icons\/button\/smartReader-16.png",
            "32": "\/icons\/button\/smartReader-32.png"
        }
    }
}