Type Tester

An extension that lets you test your words per minute (WPM), right in your browser!

什么是Type Tester?

Type Tester是由koyuul开发的Chrome扩展程序,该扩展的主要功能是“An extension that lets you test your words per minute (WPM), right in your browser!”。

扩展截图

screenshot
screenshot
screenshot

下载Type Tester扩展crx文件

下载Type Tester扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Type Tester is an extension that tests your words per minute (WPM) in a small pop up! Whenever you want to type a quote, just click the extension icon, which opens up a box for you to type a provided quote. To the right, you can see a timer and a WPM counter. After completing a quote, a box will show up, telling you your WPM, and the author of the quote. 

If you have any suggestions, comments, or feedback, please contact me at @koyuul on Twitter, or Instagram!
All feedback is appreciated :)                    

扩展基本信息

名称 Type Tester Type Tester
ID mdaghkoflnebojailmicpplodemfkhba
官方URL https://chromewebstore.google.com/detail/type-tester/mdaghkoflnebojailmicpplodemfkhba
简介 An extension that lets you test your words per minute (WPM), right in your browser!
文件大小 20.54 KB
安装次数 716
当前版本 1.4.5
更新时间 2024-02-26
上架时间 2020-03-27
评分 4.38/5 共8次评分
开发者 koyuul
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/koyuul/type-tester
帮助页面URL https://koyuul.github.io/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type Tester",
    "version": "1.4.5",
    "manifest_version": 3,
    "description": "An extension that lets you test your words per minute (WPM), right in your browser!",
    "author": "@koyuul on Twitter, Instagram",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "Type Tester",
        "default_icon": "128.png"
    },
    "icons": {
        "128": "128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "settings.html"
    }
}