DoWebScraper
Turn structured HTML into a CSV or a TXT file.
What is DoWebScraper?
DoWebScraper is a Chrome extension developed by http://quotinue.com, and its main feature is "Turn structured HTML into a CSV or a TXT file.".
Extension Screenshots
Download DoWebScraper Extension CRX File
Download DoWebScraper 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
Dead simple web scraper for data. You drop in a CSS selector and you get a table of data that you can download to a text or CSV file. I was looking for a dead simple scraper that just did what it was supposed to do without annoying me. None existed anymore so I decided to make my own. Do not expect fancy features but feel free to email me with new ideas. 1.0.3 improves the layout of the app itself and adds a "Clear" function.
Extension Basic Information
Name | |
ID | knkolhdlegaanmhhlbknpelfmjlbfmkk |
Official URL | https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk |
Description | Turn structured HTML into a CSV or a TXT file. |
File Size | 32.72 KB |
Installation Count | 843 |
Current Version | 1.0.3 |
Last Updated | 2019-04-12 |
Publish Date | 2019-04-12 |
Developer | http://quotinue.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.quotinue.com/introducing-dowebscraper/ |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DoWebScraper", "description": "Turn structured HTML into a CSV or a TXT file.", "version": "1.0.3", "browser_action": { "default_icon": "ScraperLogo.png", "default_title": "DoWebScraper" }, "background": { "scripts": [ "mybackground.js" ] }, "web_accessible_resources": [ "page.html" ], "permissions": [ "tabs", "activeTab", "pageCapture" ], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } } |