Daily Typer

Know your real typing speed in everyday typing activities.

Cos'è Daily Typer?

Daily Typer è un'estensione di Chrome sviluppata da timjang3, e la sua funzione principale è "Know your real typing speed in everyday typing activities.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Daily Typer

Scarica i file di estensione Daily Typer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extension that allows you to track your true typing speeds in everyday typing activities such as writing an email or a typing up a Facebook post. Pin the extension for the best effects.                    

Informazioni di Base sull'Estensione

Nome Daily Typer Daily Typer
ID pkafjlgablpiocffekncinpmfojicfgi
URL Ufficiale https://chromewebstore.google.com/detail/daily-typer/pkafjlgablpiocffekncinpmfojicfgi
Descrizione Know your real typing speed in everyday typing activities.
Dimensione del File 465 KB
Conteggio Installazioni 534
Versione Corrente 2.0
Ultimo Aggiornamento 2021-06-25
Data di Pubblicazione 2021-01-12
Valutazione 3.83/5 Totale 6 Valutazioni
Sviluppatore timjang3
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/timjang3/Daily-Typer
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Daily Typer",
    "version": "2.0",
    "description": "Know your real typing speed in everyday typing activities.",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "Daily TyperN.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}