SMAI Click2Engage
SMAI Click2Engage allows you to click on phone numbers on a web page and engage with them using the SMAI platform.
Τι είναι το SMAI Click2Engage;
Το SMAI Click2Engage είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SocialMiningAi, inc, και η κύρια λειτουργία του είναι "SMAI Click2Engage allows you to click on phone numbers on a web page and engage with them using the SMAI platform.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SMAI Click2Engage
Λήψη αρχείων επέκτασης SMAI Click2Engage σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The SMAI Click2Engage for Chrome extension allows you to click phone numbers of potential or existing customers on a website and engage with them through text, audio and video communication using the SocialMiningAi platform. Simply click on the SMAI Click2Engage icon next to any phone number listed on a web page to open the SocialMiningAi Engagements platform. Please note that you must be an existing customer of SocialMiningAi to be able to use this extension.
Βασικές Πληροφορίες Επέκτασης
Όνομα | SMAI Click2Engage |
ID | kocjcipedabnplhcpmafkadhikmoiicj |
Επίσημο URL | https://chromewebstore.google.com/detail/smai-click2engage/kocjcipedabnplhcpmafkadhikmoiicj |
Περιγραφή | SMAI Click2Engage allows you to click on phone numbers on a web page and engage with them using the SMAI platform. |
Μέγεθος Αρχείου | 122 KB |
Αριθμός Εγκαταστάσεων | 71 |
Τρέχουσα Έκδοση | 2.1.4 |
Τελευταία Ενημέρωση | 2024-01-22 |
Ημερομηνία Δημοσίευσης | 2022-05-12 |
Προγραμματιστής | SocialMiningAi, inc |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://socialminingai.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://socialminingai.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://socialminingai.com/privacy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SMAI Click2Engage", "version": "2.1.4", "description": "SMAI Click2Engage allows you to click on phone numbers on a web page and engage with them using the SMAI platform.", "action": { "default_icon": { "128": "img\/smai-logo-128x128.png" }, "default_popup": "popup\/popup.html", "default_title": "SMAI Click2Engage" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": true, "css": [ "content_styles.css" ], "exclude_matches": [ "https:\/\/app.funnelai.com\/*", "https:\/\/app.engagedai.io\/*" ], "js": [ "content_script.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": { "extension_pages": "script-src 'self'; img-src 'self'; frame-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' 'strict-dynamic'", "sandbox": "sandbox allow-scripts; object-src 'self'; img-src 'self'; frame-src 'self'; script-src-elem 'self' 'unsafe-inline' 'strict-dynamic'" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "img\/smai-logo-128x128.png" }, "permissions": [ "activeTab", "scripting", "storage" ], "web_accessible_resources": [ { "resources": [ "content_script.js", "content_styles.css", "entry.js", "img\/*" ], "matches": [ "https:\/\/*\/*" ] } ] } |