WPM - Typing Everywhere
A cool extension for calculating wpm everywhere
Cos'è WPM - Typing Everywhere?
WPM - Typing Everywhere è un'estensione di Chrome sviluppata da https://lyricstype.com, e la sua funzione principale è "A cool extension for calculating wpm everywhere".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WPM - Typing Everywhere
Scarica i file di estensione WPM - Typing Everywhere 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
Detect every typing in the browser and provide WPM calculate number, Choose every text in the browser and type it!
Informazioni di Base sull'Estensione
Nome | WPM - Typing Everywhere |
ID | ielbakjmldnkipkikkihbfcfcbalkilj |
URL Ufficiale | https://chromewebstore.google.com/detail/wpm-typing-everywhere/ielbakjmldnkipkikkihbfcfcbalkilj |
Descrizione | A cool extension for calculating wpm everywhere |
Dimensione del File | 100 KB |
Conteggio Installazioni | 84 |
Versione Corrente | 1.0.4 |
Ultimo Aggiornamento | 2023-01-03 |
Data di Pubblicazione | 2022-12-21 |
Valutazione | 4.56/5 Totale 9 Valutazioni |
Sviluppatore | https://lyricstype.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://lyricstype.com |
URL della Pagina di Aiuto | https://lyricstype.com/blog |
URL della Pagina della Politica sulla Privacy | https://lyricstype.com/privacy-policy |
Lingue Supportate | 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" ] } ] } |