Academy scraper
Data extraction tool for academic purpose
What is Academy scraper?
Academy scraper is a Chrome extension developed by katuvikas1423, and its main feature is "Data extraction tool for academic purpose".
Extension Screenshots
Download Academy scraper Extension CRX File
Download Academy scraper 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
AcademyScraper is a non-commercial, not for profit chrome extension that helps you scrape websites data from platforms like Linkedin. This information scraped is strictly to be used for non-commercial or research purposes. You can use the chrome extension to scrape search results in bulk from Linkedin normal profile or Linkedin Sales Navigator search results in one click.
Extension Basic Information
Name | Academy scraper |
ID | kgflgonpihpchjgcbdcogchjnccjomng |
Official URL | https://chromewebstore.google.com/detail/academy-scraper/kgflgonpihpchjgcbdcogchjnccjomng |
Description | Data extraction tool for academic purpose |
File Size | 133 KB |
Installation Count | 943 |
Current Version | 1.0.1 |
Last Updated | 2024-02-29 |
Publish Date | 2022-02-22 |
Developer | katuvikas1423 |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://docs.google.com/document/d/1SgRGCFs_VYr77lQ3LL1mKFw_oJJf_-K1JGI9pN5msYc/edit?usp=sharing |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Academy scraper", "version": "1.0.1", "manifest_version": 3, "description": "Data extraction tool for academic purpose", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "service_worker": "src\/bg\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "src\/jquery.js", "src\/content.js" ], "run_at": "document_end", "all_frames": false } ], "action": { "default_icon": "icons\/icon19.png", "default_title": "browser action demo", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [], "host_permissions": [ "https:\/\/www.linkedin.com\/*" ] } |