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
官方網址 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"
    }
}