DataGrab
Extract web data at scale without coding.
DataGrab란 무엇입니까?
DataGrab은(는) https://datagrab.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract web data at scale without coding."입니다.
확장 프로그램 스크린샷
DataGrab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
DataGrab allows you to extract data from web pages via a point-and-click interface, supporting a variety of use cases such as lead generation, price monitoring, data aggregation, real estate listings, and more. It is primarily designed for non-coders, but it still offers the flexibility for developers to tweak the generated CSS selectors. You can set up your scrapers using this extension, then in our cloud platform at scale. Our cloud service offers monthly subscriptions for users with recurring data needs as well as the option to purchase credits in bulks (for occasional data needs). Bulk credits never expire. Features * Visual scraper setup * Pagination (next link, infinite scroll, or "load more" button) * Javascript rendering * Proxy rotation * Google Sheets integration * Concurrent requests * Exporting data in CSV or JSON format * Data retention for 7 days
확장 프로그램 기본 정보
이름 | DataGrab |
ID | kfonioidcoibmccipgaihpkjiakcadkh |
공식 URL | https://chromewebstore.google.com/detail/datagrab/kfonioidcoibmccipgaihpkjiakcadkh |
설명 | Extract web data at scale without coding. |
파일 크기 | 725 KB |
설치 횟수 | 1,409 |
현재 버전 | 4.7.1 |
최근 업데이트 | 2023-12-08 |
출시 날짜 | 2020-12-26 |
평점 | 4.00/5 총 7 개의 평점 |
개발자 | https://datagrab.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://datagrab.io |
도움말 페이지 URL | https://datagrab.io/contact |
개인정보 보호 정책 페이지 URL | https://datagrab.io/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DataGrab", "version": "4.7.1", "manifest_version": 3, "description": "Extract web data at scale without coding.", "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "DataGrab", "default_icon": { "16": "icons\/datagrab_16.png", "32": "icons\/datagrab_32.png", "48": "icons\/datagrab_48.png", "128": "icons\/datagrab_128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "app-host.js" ], "css": [ "css\/content.css" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "http:\/\/localhost:8080\/*", "https:\/\/*.datagrab.io\/*" ] }, "icons": { "16": "icons\/datagrab_16.png", "32": "icons\/datagrab_32.png", "48": "icons\/datagrab_48.png", "128": "icons\/datagrab_128.png" }, "minimum_chrome_version": "88", "permissions": [ "storage", "activeTab", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "\/css\/*", "app-panel.*", "browser-run.*", "navigation-test.*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |