Type Tester

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

Type Testerคืออะไร?

Type Tester เป็นส่วนขยายของ Chrome ที่พัฒนาโดย koyuul และคุณลักษณะหลักของมันคือ "An extension that lets you test your words per minute (WPM), right in your browser!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Type Tester

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

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

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