Smart Reader - Bionic Reader
Modify a web page to make it more readable
什么是Smart Reader - Bionic Reader?
Smart Reader - Bionic Reader是由Poucous开发的Chrome扩展程序,该扩展的主要功能是“Modify a web page to make it more readable”。
扩展截图
下载Smart Reader - Bionic Reader扩展crx文件
下载Smart Reader - Bionic Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Smart Reader - Bionic Reader |
ID | cgkfhliknoajpncfpnbmknalklgiekdj |
官方URL | https://chromewebstore.google.com/detail/smart-reader-bionic-reade/cgkfhliknoajpncfpnbmknalklgiekdj |
简介 | Modify a web page to make it more readable |
文件大小 | 84.48 KB |
安装次数 | 1,057 |
当前版本 | 1.6 |
更新时间 | 2022-10-05 |
上架时间 | 2022-06-07 |
评分 | 3.50/5 共6次评分 |
开发者 | Poucous |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } } |