Bionic Converter

Chrome extension for Bionic Reading (https://bionic-reading.com)

Bionic Converter란 무엇입니까?

Bionic Converter은(는) Pixel Prefect에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for Bionic Reading (https://bionic-reading.com)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bionic Converter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension uses the Bionic Reading API to convert web pages to the Bionic Reading format. 

A Bionic Reading API key is required, which can be obtained for free from bionic-reading.com. 

This extension is not affiliated with Bionic Reading GmbH.                    

확장 프로그램 기본 정보

이름 Bionic Converter Bionic Converter
ID aghdfgeepkhlnpnohgiennjpkidkodnb
공식 URL https://chromewebstore.google.com/detail/bionic-converter/aghdfgeepkhlnpnohgiennjpkidkodnb
설명 Chrome extension for Bionic Reading (https://bionic-reading.com)
파일 크기 55.09 KB
설치 횟수 515
현재 버전 1.0.1
최근 업데이트 2022-06-03
출시 날짜 2022-05-23
개발자 Pixel Prefect
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://pixel-prefect.com
개인정보 보호 정책 페이지 URL https://pixel-prefect.com/bionic-reader
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionic Converter",
    "description": "Chrome extension for Bionic Reading (https:\/\/bionic-reading.com)",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "Pixel Prefect",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-48.png",
        "128": "\/images\/logo-128.png"
    },
    "options_page": "src\/options.html",
    "background": {
        "service_worker": "src\/scripts\/background.js"
    },
    "action": {
        "default_title": "Activate bionic reading for page",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-48.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/styles\/main.css"
            ],
            "js": [
                "src\/scripts\/constants.js",
                "src\/scripts\/functions.js"
            ]
        }
    ]
}