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 |
| Eメール | [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"
]
}
]
} | |