Smart Reader - Bionic Reader
Modify a web page to make it more readable
Vad är Smart Reader - Bionic Reader?
Smart Reader - Bionic Reader är en Chrome-tillägg utvecklad av Poucous, och dess huvudfunktion är "Modify a web page to make it more readable".
Tilläggsskärmbilder
Ladda ner Smart Reader - Bionic Reader-förlängningens CRX-fil
Ladda ner Smart Reader - Bionic Reader-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
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
Grundläggande Information om Tillägg
Namn | Smart Reader - Bionic Reader |
ID | cgkfhliknoajpncfpnbmknalklgiekdj |
Officiell webbadress | https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj |
Beskrivning | Modify a web page to make it more readable |
Filstorlek | 84.48 KB |
Antal Installationer | 1,057 |
Aktuell Version | 1.6 |
Senast Uppdaterad | 2022-10-05 |
Publiceringsdatum | 2022-06-07 |
Betyg | 3.50/5 Totalt 6 Betyg |
Utvecklare | Poucous |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } } |