Auto Uppercase for Whatsapp Web

Auto Uppercase for Whatsapp Web

Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Uppercase for Whatsapp Web",
  "version": "4.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "./icons/16.png",
    "38": "./icons/38.png",
    "64": "./icons/64.png",
    "128": "./icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "resources": [
        "script.js"
      ]
    }
  ]
}