Clienty Wap Sender
Clienty WhatsApp message sender
Cos'è Clienty Wap Sender?
Clienty Wap Sender è un'estensione di Chrome sviluppata da https://clienty.co, e la sua funzione principale è "Clienty WhatsApp message sender".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clienty Wap Sender
Scarica i file di estensione Clienty Wap Sender in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
WhatsApp messages sender plugin to use in conjunction with Clienty CRM.
Informazioni di Base sull'Estensione
Nome | Clienty Wap Sender |
ID | ogfjacfnpglhmdllkobbhpdmpdakkhhh |
URL Ufficiale | https://chromewebstore.google.com/detail/clienty-wap-sender/ogfjacfnpglhmdllkobbhpdmpdakkhhh |
Descrizione | Clienty WhatsApp message sender |
Dimensione del File | 2.25 MB |
Conteggio Installazioni | 280 |
Versione Corrente | 1.8.1 |
Ultimo Aggiornamento | 2023-08-10 |
Data di Pubblicazione | 2022-08-26 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://clienty.co |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://clienty.co/tyc |
Lingue Supportate | 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\/*" ] } ] } |