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 |
| 电子邮箱 | [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"
]
}
]
} | |