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是由opsJson开发的Chrome扩展程序,该扩展的主要功能是“Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.”。

扩展截图

screenshot

下载Auto Uppercase for Whatsapp Web扩展crx文件

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