WhatsUpper?
Auto-capitalize the first letter in WhatsApp's chats.
什么是WhatsUpper??
WhatsUpper?是由Pierluigi Zagaria开发的Chrome扩展程序,该扩展的主要功能是“Auto-capitalize the first letter in WhatsApp's chats.”。
扩展截图
下载WhatsUpper?扩展crx文件
下载WhatsUpper?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Once installed you can toggle the feature in the extension menu. 扩展基本信息
| 名称 | |
| ID | olmljjmnbndapeodpcmifmoobcbhkobf |
| 官方URL | https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf |
| 简介 | Auto-capitalize the first letter in WhatsApp's chats. |
| 文件大小 | 42.72 KB |
| 安装次数 | 369 |
| 当前版本 | 1.1.6 |
| 更新时间 | 2023-04-30 |
| 上架时间 | 2020-08-30 |
| 评分 | 2.86/5 共7次评分 |
| 开发者 | Pierluigi Zagaria |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
]
} | |