Jawa - Visual Scraper

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

Что такое Jawa - Visual Scraper?

Jawa - Visual Scraper - это расширение Chrome, разработанное https://jawa.sh, и его основная функция - "Visual scraper interface, exports to puppeteer script which you can run anywhere.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Jawa - Visual Scraper

Скачайте файлы расширений 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"
    }
}