DoWebScraper
Turn structured HTML into a CSV or a TXT file.
DoWebScraper là gì?
DoWebScraper là một tiện ích mở rộng Chrome được phát triển bởi http://quotinue.com, và tính năng chính của nó là "Turn structured HTML into a CSV or a TXT file.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DoWebScraper
Tải xuống các tệp mở rộng DoWebScraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | knkolhdlegaanmhhlbknpelfmjlbfmkk |
URL Chính Thức | https://chrome.google.com/webstore/detail/dowebscraper/knkolhdlegaanmhhlbknpelfmjlbfmkk |
Mô tả | Turn structured HTML into a CSV or a TXT file. |
Kích Thước Tệp | 32.72 KB |
Số Lần Cài Đặt | 843 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2019-04-12 |
Ngày Phát Hành | 2019-04-12 |
Nhà Phát Triển | http://quotinue.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.quotinue.com/introducing-dowebscraper/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |