WhatsApp - Online Monitor
Get a notification once the user is online
什麼是WhatsApp - Online Monitor?
WhatsApp - Online Monitor是由urielfed開發的Chrome擴展程式,該擴展的主要功能是“Get a notification once the user is online”。
擴展截圖
下載WhatsApp - Online Monitor擴展crx文件
下載WhatsApp - Online Monitor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Get a notification once the user is online in the WhatsApp Web App🟢
Source Code: https://github.com/UrielZohar/WhatsApp-Online-monitor
Youtube: https://www.youtube.com/watch?v=6cb5wYvM7NU 擴展基本資訊
| 名稱 | |
| ID | ideaabebdhbilggckiadokadnjggibnf |
| 官方網址 | https://chrome.google.com/webstore/detail/whatsapp-online-monitor/ideaabebdhbilggckiadokadnjggibnf |
| 簡介 | Get a notification once the user is online |
| 檔案大小 | 20.58 KB |
| 安裝次數 | 31 |
| 目前版本 | 1.01 |
| 更新時間 | 2023-05-23 |
| 上架時間 | 2023-05-23 |
| 開發者 | urielfed |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "WhatsApp - Online Monitor",
"description": "Get a notification once the user is online",
"version": "1.01",
"action": [],
"content_scripts": [
{
"matches": [
"https:\/\/web.whatsapp.com\/"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
} | |