CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
What is CleverStaff Importer?
CleverStaff Importer is a Chrome extension developed by linkens.online, and its main feature is "This extension helps you to add your contacts from the LinkedIn to CleverStaff".
Download CleverStaff Importer Extension CRX File
Download CleverStaff Importer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension to automatically import contacts from Linkedin into CleverStaff.
Extension Basic Information
Name | CleverStaff Importer |
ID | negnoigedepjkjpooadklljidpapfhcb |
Official URL | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
Description | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
File Size | 2.44 MB |
Installation Count | 91 |
Current Version | 1.0.1 |
Last Updated | 2016-12-27 |
Publish Date | 2016-12-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | linkens.online |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://linkens.online/policy |
Supported Languages | 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" } ] } |