Daily Typer
Know your real typing speed in everyday typing activities.
What is Daily Typer?
Daily Typer is a Chrome extension developed by timjang3, and its main feature is "Know your real typing speed in everyday typing activities.".
Extension Screenshots
Download Daily Typer Extension CRX File
Download Daily Typer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Daily Typer |
ID | pkafjlgablpiocffekncinpmfojicfgi |
Official URL | https://chromewebstore.google.com/detail/daily-typer/pkafjlgablpiocffekncinpmfojicfgi |
Description | Know your real typing speed in everyday typing activities. |
File Size | 465 KB |
Installation Count | 534 |
Current Version | 2.0 |
Last Updated | 2021-06-25 |
Publish Date | 2021-01-12 |
Rating | 3.83/5 Total 6 Ratings |
Developer | timjang3 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/timjang3/Daily-Typer |
Supported Languages | 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" ] } } |