Bionic Reading - Focused
Faster Better and More Focused Reading
什么是Bionic Reading - Focused?
Bionic Reading - Focused是由lionjs.com开发的Chrome扩展程序,该扩展的主要功能是“Faster Better and More Focused Reading”。
扩展截图
下载Bionic Reading - Focused扩展crx文件
下载Bionic Reading - Focused扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# BionicReading Extension A smart bionic reading extension for faster better and more focused reading. ## How to use This extension will autorun after installation, no extra click or settings. Press Ctrl + B to enable or disable autorun. > Tip: Cmd + B for Mac users. ## Dark mode Press Alt + C to get more focused reading experience in dark mode. Press Alt + C again to disable. > Tip: Alt + C for Mac users. ## Shortcut collision Open chrome://extensions/shortcuts and modify this extension's shortcuts. ## Other features - Blazing fast since it only affects the content in view. - Works on infinite scroll pages such as Twitter / Reddit. ## Websites need to be supported - [x] Google - [x] Gmail - [x] GitHub - [x] Youtube - [x] Reddit - [ ] Notion - [ ] Google Docs Leave comment if you have any trouble or feedback.
扩展基本信息
名称 | Bionic Reading - Focused |
ID | hijmanikokojondnhbdfmbkopdafmlgj |
官方URL | https://chromewebstore.google.com/detail/bionic-reading-focused/hijmanikokojondnhbdfmbkopdafmlgj |
简介 | Faster Better and More Focused Reading |
文件大小 | 26.52 KB |
安装次数 | 2,641 |
当前版本 | 1.2.0 |
更新时间 | 2022-06-01 |
上架时间 | 2022-05-25 |
评分 | 4.60/5 共15次评分 |
开发者 | lionjs.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": [], "background": { "service_worker": "background.js" }, "commands": { "toggleAutouse": { "suggested_key": { "default": "Ctrl+B", "mac": "Command+B" }, "description": "Turn bionic reading autouse on or off." }, "toggleFontColor": { "suggested_key": { "default": "Alt+C", "mac": "Alt+C" }, "description": "Toggle font color between inherit and white." } }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Faster Better and More Focused Reading", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "manifest_version": 3, "name": "Bionic Reading - Focused", "permissions": [ "webNavigation", "storage" ], "version": "1.2.0" } |