Connect
Find new contacts and manage tasks and call steps in your sequences from anywhere
Was ist Connect?
Connect ist eine Chrome-Erweiterung, die von https://www.datananas.com entwickelt wurde, und ihr Hauptmerkmal ist "Find new contacts and manage tasks and call steps in your sequences from anywhere".
Erweiterungsscreenshots
Connect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Connect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Connect allows you to manage your Outbound Sales campaigns and:
- Add new contacts en engage them in sequences
- Manage your tasks, and do them efficiently
- Call your contacts with VOIP
- See a timeline of your contacts' activities (opens, clicks, ...) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | claekkfnhepphhinadlbhkhpgkjknkep |
| Offizielle URL | https://chromewebstore.google.com/detail/connect/claekkfnhepphhinadlbhkhpgkjknkep |
| Beschreibung | Find new contacts and manage tasks and call steps in your sequences from anywhere |
| Dateigröße | 6.2 MB |
| Installationsanzahl | 1,568 |
| Aktuelle Version | 0.6.17 |
| Letztes Update | 2024-02-14 |
| Veröffentlichungsdatum | 2022-05-04 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | https://www.datananas.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.datananas.com |
| Hilfeseite URL | https://help.datananas.com |
| URL der Datenschutzrichtlinien-Seite | https://www.datananas.com/conditions-dutilisation |
| Unterstützte Sprachen | fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Connect",
"description": "Find new contacts and manage tasks and call steps in your sequences from anywhere",
"version": "0.6.17",
"manifest_version": 3,
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"permissions": [
"activeTab",
"alarms",
"background",
"tts",
"cookies",
"storage",
"app",
"tabs",
"system.display"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.salesforce.com\/*",
"*:\/\/*.force.com\/*"
],
"js": [
"content\/contact.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/*.linkedin.com\/*"
],
"js": [
"content\/linkedin_sn.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "service_worker.js"
},
"content_security_policy": {
"extension_pages": "child-src 'self' blob:; worker-src 'self'; script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"action": {
"default_title": "Connect",
"default_icon": "icons\/icon_128.png"
},
"host_permissions": [
"*:\/\/*.linkedin.com\/*",
"*:\/\/*.datananas.com\/*",
"*:\/\/*.sarbacane.com\/*",
"*:\/\/*.salesforce.com\/*"
]
} | |