Clienty Wap Sender
Clienty WhatsApp message sender
Vad är Clienty Wap Sender?
Clienty Wap Sender är en Chrome-tillägg utvecklad av https://clienty.co, och dess huvudfunktion är "Clienty WhatsApp message sender".
Tilläggsskärmbilder
Ladda ner Clienty Wap Sender-förlängningens CRX-fil
Ladda ner Clienty Wap Sender-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
WhatsApp messages sender plugin to use in conjunction with Clienty CRM.
Grundläggande Information om Tillägg
Namn | Clienty Wap Sender |
ID | ogfjacfnpglhmdllkobbhpdmpdakkhhh |
Officiell webbadress | https://chromewebstore.google.com/detail/clienty-wap-sender/ogfjacfnpglhmdllkobbhpdmpdakkhhh |
Beskrivning | Clienty WhatsApp message sender |
Filstorlek | 2.25 MB |
Antal Installationer | 280 |
Aktuell Version | 1.8.1 |
Senast Uppdaterad | 2023-08-10 |
Publiceringsdatum | 2022-08-26 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://clienty.co |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://clienty.co/tyc |
Stödda Språk | es-419 |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Clienty Wap Sender", "version": "1.8.1", "description": "Clienty WhatsApp message sender", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Clienty Wap Sender", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/web.whatsapp.com\/*" ], "run_at": "document_end", "js": [ "web.whatsapp.content.js" ] }, { "matches": [ "*:\/\/*.clienty.co\/*", "*:\/\/*.clienty.test\/*" ], "run_at": "document_idle", "js": [ "clienty.content.js" ] } ], "web_accessible_resources": [ { "resources": [ "web.whatsapp.content.accessible.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ] } |