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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}