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.
擴展基本資訊
名稱 | WhatsUpper? |
ID | olmljjmnbndapeodpcmifmoobcbhkobf |
官方網址 | 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" ] } ] } |