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