WhatsApp - Online Monitor
Get a notification once the user is online
Vad är WhatsApp - Online Monitor?
WhatsApp - Online Monitor är en Chrome-tillägg utvecklad av urielfed, och dess huvudfunktion är "Get a notification once the user is online".
Tilläggsskärmbilder
Ladda ner WhatsApp - Online Monitor-förlängningens CRX-fil
Ladda ner WhatsApp - Online Monitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | WhatsApp - Online Monitor |
ID | ideaabebdhbilggckiadokadnjggibnf |
Officiell webbadress | https://chrome.google.com/webstore/detail/whatsapp-online-monitor/ideaabebdhbilggckiadokadnjggibnf |
Beskrivning | Get a notification once the user is online |
Filstorlek | 20.58 KB |
Antal Installationer | 31 |
Aktuell Version | 1.01 |
Senast Uppdaterad | 2023-05-23 |
Publiceringsdatum | 2023-05-23 |
Utvecklare | urielfed |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |