Auto Uppercase for Whatsapp Web

Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.

Auto Uppercase for Whatsapp Webคืออะไร?

Auto Uppercase for Whatsapp Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย opsJson และคุณลักษณะหลักของมันคือ "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Uppercase for Whatsapp Web

ดาวน์โหลดไฟล์ส่วนขยาย Auto Uppercase for Whatsapp Web ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Eliminate pinky finger pain by automating the process of pressing shift to type capital letters at the beginning of sentences and after punctuation marks.                    

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

ชื่อ Auto Uppercase for Whatsapp Web Auto Uppercase for Whatsapp Web
ID lnhongehbnheecmglhgilembngeejbnb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb
คำอธิบาย Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
ขนาดไฟล์ 24.66 KB
จำนวนการติดตั้ง 271
เวอร์ชันปัจจุบัน 3.1
อัปเดตครั้งล่าสุด 2023-05-29
วันที่เผยแพร่ 2022-12-31
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา opsJson
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "3.1",
    "name": "Auto Uppercase for Whatsapp Web",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "resources": [
                "script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": ".\/icons\/128.png",
        "64": ".\/icons\/64.png",
        "38": ".\/icons\/38.png",
        "16": ".\/icons\/16.png"
    },
    "permissions": [
        "storage"
    ]
}