Typeing Practice Anywhere

Practice Keyboard Typing with any webpages.

Typeing Practice Anywhere là gì?

Typeing Practice Anywhere là một tiện ích mở rộng Chrome được phát triển bởi nw, và tính năng chính của nó là "Practice Keyboard Typing with any webpages.".

Ả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 Typeing Practice Anywhere

Tải xuống các tệp mở rộng Typeing Practice Anywhere 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

                        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                    

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

Tên Typeing Practice Anywhere Typeing Practice Anywhere
ID ndioekgfjeeapmocoohoboiaeigjeojg
URL Chính Thức https://chromewebstore.google.com/detail/typeing-practice-anywhere/ndioekgfjeeapmocoohoboiaeigjeojg
Mô tả Practice Keyboard Typing with any webpages.
Kích Thước Tệp 151 KB
Số Lần Cài Đặt 271
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2021-09-13
Ngày Phát Hành 2021-09-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển nw
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rrr-dw/typing_practice_anywhere
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}