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文件

下载Jawa - Visual Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}