chatcrm
Chat CRM - Easy connect to all chat platform
Vad är chatcrm?
chatcrm är en Chrome-tillägg utvecklad av https://chatcrm.app, och dess huvudfunktion är "Chat CRM - Easy connect to all chat platform".
Tilläggsskärmbilder
Ladda ner chatcrm-förlängningens CRX-fil
Ladda ner chatcrm-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
CHAT CRM for Loyalty Members A 360 degrees CHAT CRM that works with WhatsApp and carries the customer experience from engagement to feedback with minimal manual customer support. Its time to scale up your business easily.
Grundläggande Information om Tillägg
Namn | |
ID | pcimffgldlmpgcgphiobphbnpmcjajcm |
Officiell webbadress | https://chrome.google.com/webstore/detail/chatcrm/pcimffgldlmpgcgphiobphbnpmcjajcm |
Beskrivning | Chat CRM - Easy connect to all chat platform |
Filstorlek | 15.78 KB |
Antal Installationer | 30 |
Aktuell Version | 3.4.0 |
Senast Uppdaterad | 2021-02-25 |
Publiceringsdatum | 2020-06-20 |
Utvecklare | https://chatcrm.app |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://jurnal.club/tos |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "chatcrm", "short_name": "Chat CRM", "description": "Chat CRM - Easy connect to all chat platform", "version": "3.4.0", "browser_action": { "default_icon": "icon48_off.png", "default_popup": "settings_popup.html", "default_title": "chatcrm" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "config.js", "script.js" ], "run_at": "document_end" } ], "options_page": "settings.html", "web_accessible_resources": [ "client.js" ], "background": { "scripts": [ "config.js", "background.js" ], "persistent": true }, "permissions": [ "activeTab", "webRequest", "webRequestBlocking", "https:\/\/*.chatcrm.app\/*", "http:\/\/*.whatsapp.*\/*", "https:\/\/*.whatsapp.*\/*" ] } |