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.
擴展基本資訊
名稱 | CleverStaff Importer |
ID | negnoigedepjkjpooadklljidpapfhcb |
官方網址 | 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" } ] } |