CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
什么是CleverStaff Importer?
CleverStaff Importer是由linkens.online开发的Chrome扩展程序,该扩展的主要功能是“This extension helps you to add your contacts from the LinkedIn to CleverStaff”。
下载CleverStaff Importer扩展crx文件
下载CleverStaff Importer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension to automatically import contacts from Linkedin into CleverStaff. 扩展基本信息
| 名称 | |
| ID | negnoigedepjkjpooadklljidpapfhcb |
| 官方URL | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
| 简介 | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
| 文件大小 | 2.44 MB |
| 安装次数 | 91 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-12-27 |
| 上架时间 | 2016-12-27 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | linkens.online |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://linkens.online/policy |
| 支持的语言 | 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"
}
]
} | |