Scrapia
Scrapia helps you extract useful data from LinkedIn.
What is Scrapia?
Scrapia is a Chrome extension developed by contact, and its main feature is "Scrapia helps you extract useful data from LinkedIn.".
Extension Screenshots
Download Scrapia Extension CRX File
Download Scrapia extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Scrapia is a tool that extracts your leads from LinkedIn Sales. This extension is needed to get your LinkedIn authentification cookie so we can process your request on our side.
Extension Basic Information
Name | Scrapia |
ID | bkabokojjojidgdegpoongofpcegholj |
Official URL | https://chromewebstore.google.com/detail/scrapia/bkabokojjojidgdegpoongofpcegholj |
Description | Scrapia helps you extract useful data from LinkedIn. |
File Size | 8.01 KB |
Installation Count | 163 |
Current Version | 1.0 |
Last Updated | 2023-07-07 |
Publish Date | 2023-07-07 |
Developer | contact |
[email protected] | |
Payment Type | free |
Extension Website | https://scrapia.io |
Privacy Policy Page URL | https://www.scrapia.io/privacy_policy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Scrapia", "version": "1.0", "description": "Scrapia helps you extract useful data from LinkedIn.", "content_scripts": [ { "js": [ "script.js" ], "matches": [ "http:\/\/localhost:5173\/*", "https:\/\/*.scrapia.io\/*", "https:\/\/scrapia.io\/*", "https:\/\/www.linkedin.com\/sales\/*", "https:\/\/linkedin.com\/sales\/*" ], "css": [ "style.css" ] } ], "host_permissions": [ "https:\/\/www.linkedin.com\/sales\/*", "https:\/\/linkedin.com\/sales\/*" ], "permissions": [ "cookies", "activeTab", "tabs" ], "background": { "service_worker": "background.js" }, "icons": { "128": "icon.png" } } |