WPM - Typing Everywhere

A cool extension for calculating wpm everywhere

WPM - Typing Everywhereคืออะไร?

WPM - Typing Everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lyricstype.com และคุณลักษณะหลักของมันคือ "A cool extension for calculating wpm everywhere"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WPM - Typing Everywhere

ดาวน์โหลดไฟล์ส่วนขยาย 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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WPM - Typing Everywhere WPM - Typing Everywhere
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"
            ]
        }
    ]
}