DoWebScraper
Turn structured HTML into a CSV or a TXT file.
Что такое DoWebScraper?
DoWebScraper - это расширение Chrome, разработанное http://quotinue.com, и его основная функция - "Turn structured HTML into a CSV or a TXT file.".
Снимки экрана расширения
Скачать файл CRX расширения DoWebScraper
Скачайте файлы расширений 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" } } |