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