Typeing Practice Anywhere

Practice Keyboard Typing with any webpages.

Typeing Practice Anywhereคืออะไร?

Typeing Practice Anywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nw และคุณลักษณะหลักของมันคือ "Practice Keyboard Typing with any webpages."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Typeing Practice Anywhere

ดาวน์โหลดไฟล์ส่วนขยาย Typeing Practice Anywhere ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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