Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 19, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LinkedIn Email Finder", "version": "1.0", "description": "Find emails from LinkedIn profiles based on location, job title, and email domain criteria", "permissions": [ "storage", "activeTab", "scripting", "downloads", "tabs" ], "host_permissions": [ "https:\/\/www.google.com\/*", "https:\/\/*.linkedin.com\/*", "https:\/\/google.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" } }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/search*", "https:\/\/google.com\/search*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] }