WPM - Typing Everywhere

A cool extension for calculating wpm everywhere

O que é WPM - Typing Everywhere?

WPM - Typing Everywhere é uma extensão do Chrome desenvolvida por https://lyricstype.com, e sua principal característica é "A cool extension for calculating wpm everywhere".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão WPM - Typing Everywhere

Baixe arquivos de extensão WPM - Typing Everywhere no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome WPM - Typing Everywhere WPM - Typing Everywhere
ID ielbakjmldnkipkikkihbfcfcbalkilj
URL Oficial https://chromewebstore.google.com/detail/wpm-typing-everywhere/ielbakjmldnkipkikkihbfcfcbalkilj
Descrição A cool extension for calculating wpm everywhere
Tamanho do Arquivo 100 KB
Contagem de Instalações 84
Versão Atual 1.0.4
Última Atualização 2023-01-03
Data de Publicação 2022-12-21
Classificação 4.56/5 Total de 9 Avaliações
Desenvolvedor https://lyricstype.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://lyricstype.com
URL da Página de Ajuda https://lyricstype.com/blog
URL da Página de Política de Privacidade https://lyricstype.com/privacy-policy
Idiomas Suportados 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"
            ]
        }
    ]
}