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

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

                        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
عنوان صفحة المساعدة 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"
    }
}