Type Tester

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

Co je Type Tester?

Type Tester je rozšíření Chrome vyvinuté koyuul, a jeho hlavní funkcí je „An extension that lets you test your words per minute (WPM), right in your browser!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Type Tester

Stáhněte si soubory rozšíření Type Tester ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
Oficiální URL https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
Popis An extension that lets you test your words per minute (WPM), right in your browser!
Velikost souboru 20.54 KB
Počet instalací 716
Aktuální Verze 1.4.5
Poslední Aktualizace 2024-02-26
Datum Vydání 2020-03-27
Hodnocení 4.38/5 Celkem 8 Hodnocení
Vývojář koyuul
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/koyuul/type-tester
URL Stránky Nápovědy https://koyuul.github.io/
Podporované Jazyky 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"
    }
}