DoWebScraper
Turn structured HTML into a CSV or a TXT file.
什么是DoWebScraper?
DoWebScraper是由http://quotinue.com开发的Chrome扩展程序,该扩展的主要功能是“Turn structured HTML into a CSV or a TXT file.”。
扩展截图
下载DoWebScraper扩展crx文件
下载DoWebScraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | knkolhdlegaanmhhlbknpelfmjlbfmkk |
官方URL | https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk |
简介 | Turn structured HTML into a CSV or a TXT file. |
文件大小 | 32.72 KB |
安装次数 | 843 |
当前版本 | 1.0.3 |
更新时间 | 2019-04-12 |
上架时间 | 2019-04-12 |
开发者 | http://quotinue.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.quotinue.com/introducing-dowebscraper/ |
支持的语言 | 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" } } |