WPM - Typing Everywhere
A cool extension for calculating wpm everywhere
WPM - Typing Everywhereとは何ですか?
WPM - Typing Everywhereはhttps://lyricstype.comによって開発されたChromeの拡張機能で、その主な機能は「A cool extension for calculating wpm everywhere」です。
拡張機能のスクリーンショット
WPM - Typing Everywhere拡張機能のCRXファイルをダウンロード
WPM - Typing Everywhere拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Detect every typing in the browser and provide WPM calculate number,
Choose every text in the browser and type it! 拡張機能の基本情報
| 名前 | |
| ID | ielbakjmldnkipkikkihbfcfcbalkilj |
| 公式URL | https://chromewebstore.google.com/detail/wpm-typing-everywhere/ielbakjmldnkipkikkihbfcfcbalkilj |
| 説明 | A cool extension for calculating wpm everywhere |
| ファイルサイズ | 100 KB |
| インストール数 | 84 |
| 現在のバージョン | 1.0.4 |
| 最終更新日 | 2023-01-03 |
| 公開日 | 2022-12-21 |
| 評価 | 4.56/5 合計 9 レビュー |
| 開発者 | https://lyricstype.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://lyricstype.com |
| ヘルプページのURL | https://lyricstype.com/blog |
| プライバシーポリシーページのURL | https://lyricstype.com/privacy-policy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WPM - Typing Everywhere",
"version": "1.0.4",
"description": "A cool extension for calculating wpm everywhere",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*"
],
"icons": {
"16": "assets\/logo.png",
"48": "assets\/logo-48.png",
"128": "assets\/logo-128.jpg"
},
"manifest_version": 3,
"author": "SGSystems",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "assets\/logo.png",
"24": "assets\/logo.png",
"32": "assets\/logo.png"
},
"default_title": "WPM Extention",
"default_popup": "bootstrap.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.stackoverflow.com\/*",
"https:\/\/*.com\/*",
"https:\/\/*.net\/*",
"https:\/\/*.io\/*",
"https:\/\/*.us\/*",
"http:\/\/*.com\/*",
"https:\/\/*.co.il\/*",
"http:\/\/*.co.il\/*",
"https:\/\/*.org\/*"
],
"js": [
"content.js"
],
"css": [
"content.css",
"button.css"
]
}
]
} | |