TypeSpeed

Tells you how fast you type

Co to jest TypeSpeed?

TypeSpeed to rozszerzenie Chrome opracowane przez Foulack Ruacien, a jego główną funkcją jest „Tells you how fast you type”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TypeSpeed

Pobierz pliki rozszerzeń TypeSpeed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension will tell you how fast you type in Words Per Minute (WPM) during your regular browsing activities.  

KNOWN PROBLEMS: Does not detect WPM when typing in the Chrome omnibox,nor in Google Docs.  However, it will work on Microsoft OneDrive online word document editing.

******************************
In browser typing speed,in-browser,test,wpm,information,how fast do I type,fun typing tool tools                    

Podstawowe informacje o rozszerzeniu

Nazwa TypeSpeed TypeSpeed
ID lcjpaegcgeiiidkmioidiabdljehcfno
Oficjalny URL https://chrome.google.com/webstore/detail/typespeed/lcjpaegcgeiiidkmioidiabdljehcfno
Opis Tells you how fast you type
Rozmiar pliku 5.82 KB
Liczba instalacji 907
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2016-01-05
Data Publikacji 2016-01-05
Ocena 1.72/5 Łącznie 18 Oceny
Deweloper Foulack Ruacien
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TypeSpeed",
    "description": "Tells you how fast you type",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "tabs"
    ]
}