Smart Reader - Bionic Reader
Modify a web page to make it more readable
Was ist Smart Reader - Bionic Reader?
Smart Reader - Bionic Reader ist eine Chrome-Erweiterung, die von Poucous entwickelt wurde, und ihr Hauptmerkmal ist "Modify a web page to make it more readable".
Erweiterungsscreenshots
Smart Reader - Bionic Reader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Smart Reader - Bionic Reader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cgkfhliknoajpncfpnbmknalklgiekdj |
| Offizielle URL | https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj |
| Beschreibung | Modify a web page to make it more readable |
| Dateigröße | 84.48 KB |
| Installationsanzahl | 1,057 |
| Aktuelle Version | 1.6 |
| Letztes Update | 2022-10-05 |
| Veröffentlichungsdatum | 2022-06-07 |
| Bewertung | 3.50/5 Insgesamt 6 Bewertungen |
| Entwickler | Poucous |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
}
} | |