CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
CleverStaff Importer là gì?
CleverStaff Importer là một tiện ích mở rộng Chrome được phát triển bởi linkens.online, và tính năng chính của nó là "This extension helps you to add your contacts from the LinkedIn to CleverStaff".
Tải xuống tệp CRX của tiện ích mở rộng CleverStaff Importer
Tải xuống các tệp mở rộng CleverStaff Importer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Extension to automatically import contacts from Linkedin into CleverStaff.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CleverStaff Importer |
ID | negnoigedepjkjpooadklljidpapfhcb |
URL Chính Thức | https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb |
Mô tả | This extension helps you to add your contacts from the LinkedIn to CleverStaff |
Kích Thước Tệp | 2.44 MB |
Số Lần Cài Đặt | 91 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2016-12-27 |
Ngày Phát Hành | 2016-12-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | linkens.online |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://linkens.online/policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |