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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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. 확장 프로그램 기본 정보
| 이름 | |
| 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"
} | |