WPM - Typing Everywhere

A cool extension for calculating wpm everywhere

Co to jest WPM - Typing Everywhere?

WPM - Typing Everywhere to rozszerzenie Chrome opracowane przez https://lyricstype.com, a jego główną funkcją jest „A cool extension for calculating wpm everywhere”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia WPM - Typing Everywhere

Pobierz pliki rozszerzeń WPM - Typing Everywhere 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

                        Detect every typing in the browser and provide WPM calculate number,
Choose every text in the browser and type it!                    

Podstawowe informacje o rozszerzeniu

Nazwa WPM - Typing Everywhere WPM - Typing Everywhere
ID ielbakjmldnkipkikkihbfcfcbalkilj
Oficjalny URL https://chromewebstore.google.com/detail/wpm-typing-everywhere/ielbakjmldnkipkikkihbfcfcbalkilj
Opis A cool extension for calculating wpm everywhere
Rozmiar pliku 100 KB
Liczba instalacji 84
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2023-01-03
Data Publikacji 2022-12-21
Ocena 4.56/5 Łącznie 9 Oceny
Deweloper https://lyricstype.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://lyricstype.com
Adres URL Strony Pomocy https://lyricstype.com/blog
Adres URL Strony Polityki Prywatności https://lyricstype.com/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WPM - Typing Everywhere",
    "version": "1.0.4",
    "description": "A cool extension for calculating wpm everywhere",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "16": "assets\/logo.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.jpg"
    },
    "manifest_version": 3,
    "author": "SGSystems",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/logo.png",
            "24": "assets\/logo.png",
            "32": "assets\/logo.png"
        },
        "default_title": "WPM Extention",
        "default_popup": "bootstrap.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.stackoverflow.com\/*",
                "https:\/\/*.com\/*",
                "https:\/\/*.net\/*",
                "https:\/\/*.io\/*",
                "https:\/\/*.us\/*",
                "http:\/\/*.com\/*",
                "https:\/\/*.co.il\/*",
                "http:\/\/*.co.il\/*",
                "https:\/\/*.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css",
                "button.css"
            ]
        }
    ]
}