Type Tester

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

O que é Type Tester?

Type Tester é uma extensão do Chrome desenvolvida por koyuul, e sua principal característica é "An extension that lets you test your words per minute (WPM), right in your browser!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Type Tester

Baixe arquivos de extensão Type Tester no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
URL Oficial https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
Descrição An extension that lets you test your words per minute (WPM), right in your browser!
Tamanho do Arquivo 20.54 KB
Contagem de Instalações 716
Versão Atual 1.4.5
Última Atualização 2024-02-26
Data de Publicação 2020-03-27
Classificação 4.38/5 Total de 8 Avaliações
Desenvolvedor koyuul
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/koyuul/type-tester
URL da Página de Ajuda https://koyuul.github.io/
Idiomas Suportados 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"
    }
}