Smart Reader - Bionic Reader

Modify a web page to make it more readable

Qu'est-ce que Smart Reader - Bionic Reader ?

Smart Reader - Bionic Reader est une extension Chrome développée par Poucous, et sa fonction principale est "Modify a web page to make it more readable".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Smart Reader - Bionic Reader

Téléchargez les fichiers d'extension Smart Reader - Bionic Reader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Smart Reader - Bionic Reader Smart Reader - Bionic Reader
ID cgkfhliknoajpncfpnbmknalklgiekdj
URL Officiel https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj
Description Modify a web page to make it more readable
Taille du Fichier 84.48 KB
Nombre d'Installations 1,057
Version Actuelle 1.6
Dernière Mise à Jour 2022-10-05
Date de Publication 2022-06-07
Évaluation 3.50/5 Total 6 Évaluations
Développeur Poucous
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}