CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
Vad är CleverStaff Importer?
CleverStaff Importer är en Chrome-tillägg utvecklad av linkens.online, och dess huvudfunktion är "This extension helps you to add your contacts from the LinkedIn to CleverStaff".
Ladda ner CleverStaff Importer-förlängningens CRX-fil
Ladda ner CleverStaff Importer-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
Extension to automatically import contacts from Linkedin into CleverStaff. Grundläggande Information om Tillägg
| Namn | |
| ID | negnoigedepjkjpooadklljidpapfhcb |
| Officiell webbadress | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
| Beskrivning | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
| Filstorlek | 2.44 MB |
| Antal Installationer | 91 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2016-12-27 |
| Publiceringsdatum | 2016-12-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | linkens.online |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://linkens.online/policy |
| Stödda Språk | 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"
}
]
} | |