WhatsUpper?

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

WhatsUpper? là gì?

WhatsUpper? là một tiện ích mở rộng Chrome được phát triển bởi Pierluigi Zagaria, và tính năng chính của nó là "Auto-capitalize the first letter in WhatsApp's chats.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WhatsUpper?

Tải xuống các tệp mở rộng WhatsUpper? dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
URL Chính Thức https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
Mô tả Auto-capitalize the first letter in WhatsApp's chats.
Kích Thước Tệp 42.72 KB
Số Lần Cài Đặt 369
Phiên Bản Hiện Tại 1.1.6
Cập Nhật Lần Cuối 2023-04-30
Ngày Phát Hành 2020-08-30
Đánh Giá 2.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Pierluigi Zagaria
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}