Text Speed-reading Extension

A Chrome extension that bolds parts of words to increase your reading speed

Text Speed-reading Extension란 무엇입니까?

Text Speed-reading Extension은(는) joe44850에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that bolds parts of words to increase your reading speed"입니다.

확장 프로그램 스크린샷

screenshot

Text Speed-reading Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Introducing the new chrome extension that can boost your reading speed! Our extension bolds the first few letters of every word on a webpage within text paragraphs, making it easier for you to scan through the text and identify the most important words. Studies have shown that this technique can significantly increase your reading speed, making it perfect for students, professionals, and anyone who wants to read faster and more efficiently. Try it out today and experience the benefits of this simple yet powerful tool!                    

확장 프로그램 기본 정보

이름 Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
공식 URL https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
설명 A Chrome extension that bolds parts of words to increase your reading speed
파일 크기 33.97 KB
설치 횟수 55
현재 버전 1.1
최근 업데이트 2023-05-17
출시 날짜 2023-04-19
평점 5.00/5 총 2 개의 평점
개발자 joe44850
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://joelinstrum.com
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Speed-reading Extension",
    "version": "1.1",
    "description": "A Chrome extension that bolds parts of words to increase your reading speed",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js",
                "addSpeedRead.js",
                "removeSpeedRead.js"
            ]
        }
    ]
}