Typeing Practice Anywhere

Practice Keyboard Typing with any webpages.

Typeing Practice Anywhere란 무엇입니까?

Typeing Practice Anywhere은(는) nw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Practice Keyboard Typing with any webpages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Typeing Practice Anywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Typing Practice Anywhere is a chrome extension that motivates you to practice keyboard typing.

What It Does:
* Motivates typing practice with your favorite text to type.
* Shows typing practice overlay inside any webpages.
* Analyzes your typing performance.

Use Cases:
* Checking how fast you can type with the web content you interested in
* memorizing terminology / spelling / lyrics / phrases
* Learning foreign languages by typing foreign web contents

More detailed explanation with gif images is available in the following github page:
https://github.com/rrr-dw/typing_practice_anywhere                    

확장 프로그램 기본 정보

이름 Typeing Practice Anywhere Typeing Practice Anywhere
ID ndioekgfjeeapmocoohoboiaeigjeojg
공식 URL https://chromewebstore.google.com/detail/typeing-practice-anywhere/ndioekgfjeeapmocoohoboiaeigjeojg
설명 Practice Keyboard Typing with any webpages.
파일 크기 151 KB
설치 횟수 271
현재 버전 0.1.1
최근 업데이트 2021-09-13
출시 날짜 2021-09-09
평점 5.00/5 총 1 개의 평점
개발자 nw
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rrr-dw/typing_practice_anywhere
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Typeing Practice Anywhere",
    "version": "0.1.1",
    "description": "Practice Keyboard Typing with any webpages.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Typing Practice Anywhere",
        "default_icon": {
            "128": "icon\/ty+128.png",
            "48": "icon\/ty+48.png",
            "16": "icon\/ty+16.png"
        }
    },
    "icons": {
        "128": "icon\/ty+128.png",
        "48": "icon\/ty+48.png",
        "16": "icon\/ty+16.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "option.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}