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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}