Type Tester

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

Vad är Type Tester?

Type Tester är en Chrome-tillägg utvecklad av koyuul, och dess huvudfunktion är "An extension that lets you test your words per minute (WPM), right in your browser!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Type Tester-förlängningens CRX-fil

Ladda ner Type Tester-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
Officiell webbadress https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
Beskrivning An extension that lets you test your words per minute (WPM), right in your browser!
Filstorlek 20.54 KB
Antal Installationer 716
Aktuell Version 1.4.5
Senast Uppdaterad 2024-02-26
Publiceringsdatum 2020-03-27
Betyg 4.38/5 Totalt 8 Betyg
Utvecklare koyuul
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/koyuul/type-tester
Hjälpsida URL https://koyuul.github.io/
Stödda Språk 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"
    }
}