CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
Was ist CleverStaff Importer?
CleverStaff Importer ist eine Chrome-Erweiterung, die von linkens.online entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps you to add your contacts from the LinkedIn to CleverStaff".
CleverStaff Importer-Erweiterungs-CRX-Datei herunterladen
Laden Sie CleverStaff Importer-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
Extension to automatically import contacts from Linkedin into CleverStaff. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | negnoigedepjkjpooadklljidpapfhcb |
| Offizielle URL | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
| Beschreibung | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
| Dateigröße | 2.44 MB |
| Installationsanzahl | 91 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-12-27 |
| Veröffentlichungsdatum | 2016-12-27 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | linkens.online |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://linkens.online/policy |
| Unterstützte Sprachen | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CleverStaff Importer",
"description": "This extension helps you to add your contacts from the LinkedIn to CleverStaff",
"version": "1.0.1",
"default_locale": "en",
"icons": {
"128": "components\/icon.png"
},
"browser_action": {
"default_icon": "components\/icon.png",
"default_popup": "components\/html\/popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"background": {
"page": "components\/html\/background.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.linkedin.com\/connections*",
"*:\/\/www.linkedin.com\/connections?*"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"components\/js\/class.app.js",
"components\/js\/connections.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/www.linkedin.com\/in\/*"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"components\/js\/class.app.js",
"components\/js\/profile.js"
],
"run_at": "document_end"
}
]
} | |