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