Linkedly
Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies.
什麼是Linkedly?
Linkedly是由https://linkedly.app開發的Chrome擴展程式,該擴展的主要功能是“Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies.”。
擴展截圖
下載Linkedly擴展crx文件
下載Linkedly擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Linkedly is a networking tool that enhances your chances of receiving responses while networking, and it also assists in keeping track of your outreach efforts. It features: - Personalized reach-out message generator using Chat GPT - Email Address generator - List builder of people you have reached out to - Download built lists to Excel
擴展基本資訊
名稱 | Linkedly |
ID | imogamaabehbgfjmddalkhmimcnmfmid |
官方網址 | https://chromewebstore.google.com/detail/linkedly/imogamaabehbgfjmddalkhmimcnmfmid |
簡介 | Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies. |
檔案大小 | 34.88 KB |
安裝次數 | 52 |
目前版本 | 1.1.0 |
更新時間 | 2023-07-29 |
上架時間 | 2023-07-07 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://linkedly.app |
電子郵箱 | [email protected] |
付費類型 | in_app |
擴展官網 | https://linkedly.app/ |
說明頁面URL | https://linkedly.app/support.html |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Linkedly", "version": "1.1.0", "description": "Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies.", "permissions": [ "tabs", "storage", "identity" ], "action": { "default_popup": "pageLoading\/loading.html", "default_icon": { "128": "images\/chainlogoblacksmall.png" } }, "oauth2": { "client_id": "434880350039-oa4f7bc3k4shqjq5ev3edhvcj3itjvdv.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/userinfo.email" ] }, "background": { "service_worker": "background.js" }, "externally_connectable": { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, "host_permissions": [ "https:\/\/www.linkedin.com\/in\/*", "http:\/\/www.linkedin.com\/in\/*", "https:\/\/linkedly.app\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/in\/*", "http:\/\/www.linkedin.com\/in\/*" ], "js": [ "content.js" ] } ] } |