Bionify | Read faster!
Open source text converter designed to help you read faster!
Bionify | Read faster!란 무엇입니까?
Bionify | Read faster!은(는) https://bionify.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open source text converter designed to help you read faster!"입니다.
확장 프로그램 스크린샷
Bionify | Read faster! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Read any kind of public website faster with Bionify! Bionify converts any public website into Bionified format, which alters texts so that the most concise parts of words are highlighted. This guides the eye over the text and the brain remembers previously learned words more quickly. This extension is 100% free and open source, and you may find the source code here: https://github.com/Cveinnt/bionify. As Bionify is open source and free, it is NOT associated with the paid Bionic Reading® APIs. We use our own highlighting algorithms and do not violate their copyrights. If this extension helped you, feel free to leave a star! Please note that the extension currently don't support any kind of locally uploaded contents, such as PDFs. INSTRUCTIONS * Pin the Bionify extension to your Chrome extension bar * Go the the public website you want to read * Click on the extension icon * Click on the toggle button to start reading with Bionic Reader! If you have any questions or comments, feel free to submit an issue on the GitHub repo. This is in early development and improvements, features, and fixes will be soon to come!
확장 프로그램 기본 정보
이름 | Bionify | Read faster! |
ID | gomhfpbcjfidhpffhecghfdieincgncc |
공식 URL | https://chromewebstore.google.com/detail/bionify-read-faster/gomhfpbcjfidhpffhecghfdieincgncc |
설명 | Open source text converter designed to help you read faster! |
파일 크기 | 51.71 KB |
설치 횟수 | 15,133 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2022-06-05 |
출시 날짜 | 2022-05-30 |
평점 | 4.68/5 총 19 개의 평점 |
개발자 | https://bionify.xyz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bionify.xyz/ |
도움말 페이지 URL | https://bionify.xyz/privacy-policy |
개인정보 보호 정책 페이지 URL | https://bionify.xyz/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bionify | Read faster!", "description": "Open source text converter designed to help you read faster!", "author": "Vincent Wu", "version": "0.0.3", "manifest_version": 3, "icons": { "16": "src\/icons\/favicon-16.png", "32": "src\/icons\/favicon-32.png", "48": "src\/icons\/favicon-48.png", "128": "src\/icons\/favicon-128.png" }, "background": { "service_worker": "src\/background.js", "type": "module" }, "permissions": [ "storage", "activeTab", "scripting", "tabs" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "action": { "default_popup": "src\/popup\/popup.html" }, "commands": { "toggle-bionify": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Bionify the current tab" }, "toggle-auto-bionify": { "suggested_key": { "default": "Ctrl+Shift+H" }, "description": "Toggle auto Bionify" } } } |