CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
Co to jest CleverStaff Importer?
CleverStaff Importer to rozszerzenie Chrome opracowane przez linkens.online, a jego główną funkcją jest „This extension helps you to add your contacts from the LinkedIn to CleverStaff”.
Pobierz plik CRX rozszerzenia CleverStaff Importer
Pobierz pliki rozszerzeń CleverStaff Importer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Extension to automatically import contacts from Linkedin into CleverStaff. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | negnoigedepjkjpooadklljidpapfhcb |
| Oficjalny URL | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
| Opis | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
| Rozmiar pliku | 2.44 MB |
| Liczba instalacji | 91 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2016-12-27 |
| Data Publikacji | 2016-12-27 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | linkens.online |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://linkens.online/policy |
| Obsługiwane Języki | 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"
}
]
} | |