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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |