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