Daily Typer
Know your real typing speed in everyday typing activities.
什么是Daily Typer?
Daily Typer是由timjang3开发的Chrome扩展程序,该扩展的主要功能是“Know your real typing speed in everyday typing activities.”。
扩展截图
下载Daily Typer扩展crx文件
下载Daily Typer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Daily Typer |
ID | pkafjlgablpiocffekncinpmfojicfgi |
官方URL | https://chromewebstore.google.com/detail/daily-typer/pkafjlgablpiocffekncinpmfojicfgi |
简介 | Know your real typing speed in everyday typing activities. |
文件大小 | 465 KB |
安装次数 | 534 |
当前版本 | 2.0 |
更新时间 | 2021-06-25 |
上架时间 | 2021-01-12 |
评分 | 3.83/5 共6次评分 |
开发者 | timjang3 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/timjang3/Daily-Typer |
支持的语言 | 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" ] } } |