Chrome Web Scraper
Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
What is Chrome Web Scraper?
Chrome Web Scraper is a Chrome extension developed by dylanrstevens, and its main feature is "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".
Extension Screenshots
Download Chrome Web Scraper Extension CRX File
Download Chrome Web 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
Quickly gather the raw text from a website, and have it automatically parsed and saved to a text file for you. Perfect for developers, or those looking to gather large amounts of real text data efficiently.
Extension Basic Information
Name | |
ID | obhkinejeakgfelofmgbjdenckknmeoc |
Official URL | https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc |
Description | Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file. |
File Size | 198 KB |
Installation Count | 56 |
Current Version | 1.0 |
Last Updated | 2022-08-07 |
Publish Date | 2022-08-07 |
Developer | dylanrstevens |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/dylanrstevens/chrome-web-scraper |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome Web Scraper", "version": "1.0", "description": "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Chrome Web Scraper", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "downloads" ] } |