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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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