Type Tester

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

Type Tester là gì?

Type Tester là một tiện ích mở rộng Chrome được phát triển bởi koyuul, và tính năng chính của nó là "An extension that lets you test your words per minute (WPM), right in your browser!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Type Tester

Tải xuống các tệp mở rộng Type Tester dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
URL Chính Thức https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
Mô tả An extension that lets you test your words per minute (WPM), right in your browser!
Kích Thước Tệp 20.54 KB
Số Lần Cài Đặt 716
Phiên Bản Hiện Tại 1.4.5
Cập Nhật Lần Cuối 2024-02-26
Ngày Phát Hành 2020-03-27
Đánh Giá 4.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển koyuul
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/koyuul/type-tester
URL Trang Trợ Giúp https://koyuul.github.io/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}