Linkedly
Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies.
Linkedly क्या है?
Linkedly https://linkedly.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Linkedly is a chrome extension that helps you find the most relevant LinkedIn profiles for your target companies."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Linkedly एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } ] } |