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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
} | |