Type2Learn

Learn by typing the webpage text in the browser itself!

Type2Learn란 무엇입니까?

Type2Learn은(는) Raghav Sethi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn by typing the webpage text in the browser itself!"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Ever happened that you are unable to concentrate and read the same line again and again? Or bored of typing random text on the typing tests? Try this extension now! Read the text by typing it on the webpage itself. You can monitor your speed, errors you make, and accuracy in real-time!

Steps to use the extension:
1) Select a paragraph by clicking on it or selecting any word from it
2) Click on the extension icon in the toolbar. A popup will appear.
3) Click on the button - Prepare Text. You should see the first letter of the paragraph highlighted.
4) Start typing from the beginning of the selected paragraph.

PS: this extension version currently works on the pages in which the text selected is in paragraph HTML tag                    

확장 프로그램 기본 정보

이름 Type2Learn Type2Learn
ID fhaenfmnpmhafnbamailokcjjbpmehig
공식 URL https://chromewebstore.google.com/detail/type2learn/fhaenfmnpmhafnbamailokcjjbpmehig
설명 Learn by typing the webpage text in the browser itself!
파일 크기 2.69 MB
설치 횟수 65
현재 버전 0.0.4
최근 업데이트 2022-03-24
출시 날짜 2022-02-28
평점 5.00/5 총 2 개의 평점
개발자 Raghav Sethi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://rghv96.github.io/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type2Learn",
    "description": "Learn by typing the webpage text in the browser itself!",
    "version": "0.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "my-styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Type2Learn"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/rcd16.png",
            "32": "\/images\/rcd32.png",
            "48": "\/images\/rcd48.png",
            "128": "\/images\/rcd128.png"
        }
    },
    "icons": {
        "16": "\/images\/rcd16.png",
        "32": "\/images\/rcd32.png",
        "48": "\/images\/rcd48.png",
        "128": "\/images\/rcd128.png"
    }
}