Typeing Practice Anywhere

Practice Keyboard Typing with any webpages.

Τι είναι το Typeing Practice Anywhere;

Το Typeing Practice Anywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nw, και η κύρια λειτουργία του είναι "Practice Keyboard Typing with any webpages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Typeing Practice Anywhere

Λήψη αρχείων επέκτασης Typeing Practice Anywhere σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Typing Practice Anywhere is a chrome extension that motivates you to practice keyboard typing.

What It Does:
* Motivates typing practice with your favorite text to type.
* Shows typing practice overlay inside any webpages.
* Analyzes your typing performance.

Use Cases:
* Checking how fast you can type with the web content you interested in
* memorizing terminology / spelling / lyrics / phrases
* Learning foreign languages by typing foreign web contents

More detailed explanation with gif images is available in the following github page:
https://github.com/rrr-dw/typing_practice_anywhere                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Typeing Practice Anywhere Typeing Practice Anywhere
ID ndioekgfjeeapmocoohoboiaeigjeojg
Επίσημο URL https://chromewebstore.google.com/detail/typeing-practice-anywhere/ndioekgfjeeapmocoohoboiaeigjeojg
Περιγραφή Practice Keyboard Typing with any webpages.
Μέγεθος Αρχείου 151 KB
Αριθμός Εγκαταστάσεων 271
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2021-09-13
Ημερομηνία Δημοσίευσης 2021-09-09
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής nw
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rrr-dw/typing_practice_anywhere
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Typeing Practice Anywhere",
    "version": "0.1.1",
    "description": "Practice Keyboard Typing with any webpages.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Typing Practice Anywhere",
        "default_icon": {
            "128": "icon\/ty+128.png",
            "48": "icon\/ty+48.png",
            "16": "icon\/ty+16.png"
        }
    },
    "icons": {
        "128": "icon\/ty+128.png",
        "48": "icon\/ty+48.png",
        "16": "icon\/ty+16.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "option.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}