WhatsUpper?

Auto-capitalize the first letter in WhatsApp's chats.

WhatsUpper?คืออะไร?

WhatsUpper? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pierluigi Zagaria และคุณลักษณะหลักของมันคือ "Auto-capitalize the first letter in WhatsApp's chats."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WhatsUpper?

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

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

                        Once installed you can toggle the feature in the extension menu.                    

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

ชื่อ WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
คำอธิบาย Auto-capitalize the first letter in WhatsApp's chats.
ขนาดไฟล์ 42.72 KB
จำนวนการติดตั้ง 369
เวอร์ชันปัจจุบัน 1.1.6
อัปเดตครั้งล่าสุด 2023-04-30
วันที่เผยแพร่ 2020-08-30
คะแนน 2.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Pierluigi Zagaria
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsUpper?",
    "version": "1.1.6",
    "description": "Auto-capitalize the first letter in WhatsApp's chats.",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/content.js"
            ]
        }
    ]
}