Jawa - Visual Scraper

Visual scraper interface, exports to puppeteer script which you can run anywhere.

Jawa - Visual Scraper란 무엇입니까?

Jawa - Visual Scraper은(는) https://jawa.sh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visual scraper interface, exports to puppeteer script which you can run anywhere."입니다.

확장 프로그램 스크린샷

screenshot

Jawa - Visual Scraper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is companion extension for Jawa - Visual Scraper. You can find it at https://jawa.sh

Jawa allows you to visually click elements of any website and then export selectors as a config that you can run in any node environment to scrape the content when needed.

Extension is required to be able to scrape and select content from other sites during scraping process.                    

확장 프로그램 기본 정보

이름 Jawa - Visual Scraper Jawa - Visual Scraper
ID icjgianfpiifbdpddkadmpcegiffiglk
공식 URL https://chromewebstore.google.com/detail/jawa-visual-scraper/icjgianfpiifbdpddkadmpcegiffiglk
설명 Visual scraper interface, exports to puppeteer script which you can run anywhere.
파일 크기 28.93 KB
설치 횟수 155
현재 버전 1.0.1
최근 업데이트 2023-10-15
출시 날짜 2022-10-17
개발자 https://jawa.sh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jawa.sh
도움말 페이지 URL https://github.com/capjavert/vscraper/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "description": "Visual scraper interface, exports to puppeteer script which you can run anywhere.",
    "externally_connectable": {
        "matches": [
            "https:\/\/*.kickass.codes\/*",
            "https:\/\/*.kickass.website\/*",
            "https:\/\/kickass.ngrok.io\/*",
            "https:\/\/jawa.sh\/*"
        ]
    },
    "manifest_version": 3,
    "name": "Jawa - Visual Scraper",
    "web_accessible_resources": [
        {
            "resources": [
                "finder.medv.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "short_name": "Jawa",
    "version": "1.0.1",
    "icons": {
        "16": "assets\/jawa-icon-16.png",
        "32": "assets\/jawa-icon-32.png",
        "48": "assets\/jawa-icon-48.png",
        "128": "assets\/jawa-icon-128.png"
    }
}