Type Tester

An extension that lets you test your words per minute (WPM), right in your browser!

Type Tester란 무엇입니까?

Type Tester은(는) koyuul에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that lets you test your words per minute (WPM), right in your browser!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Type Tester is an extension that tests your words per minute (WPM) in a small pop up! Whenever you want to type a quote, just click the extension icon, which opens up a box for you to type a provided quote. To the right, you can see a timer and a WPM counter. After completing a quote, a box will show up, telling you your WPM, and the author of the quote. 

If you have any suggestions, comments, or feedback, please contact me at @koyuul on Twitter, or Instagram!
All feedback is appreciated :)                    

확장 프로그램 기본 정보

이름 Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
공식 URL https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
설명 An extension that lets you test your words per minute (WPM), right in your browser!
파일 크기 20.54 KB
설치 횟수 716
현재 버전 1.4.5
최근 업데이트 2024-02-26
출시 날짜 2020-03-27
평점 4.38/5 총 8 개의 평점
개발자 koyuul
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/koyuul/type-tester
도움말 페이지 URL https://koyuul.github.io/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type Tester",
    "version": "1.4.5",
    "manifest_version": 3,
    "description": "An extension that lets you test your words per minute (WPM), right in your browser!",
    "author": "@koyuul on Twitter, Instagram",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "Type Tester",
        "default_icon": "128.png"
    },
    "icons": {
        "128": "128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "settings.html"
    }
}