CleverStaff Importer
This extension helps you to add your contacts from the LinkedIn to CleverStaff
CleverStaff Importerคืออะไร?
CleverStaff Importer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย linkens.online และคุณลักษณะหลักของมันคือ "This extension helps you to add your contacts from the LinkedIn to CleverStaff"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CleverStaff Importer
ดาวน์โหลดไฟล์ส่วนขยาย CleverStaff Importer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extension to automatically import contacts from Linkedin into CleverStaff.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CleverStaff Importer |
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" } ] } |