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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Smart Reader - Bionic Reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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 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"
        }
    }
}