Spider Free - The simplest web scraper

Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.

Что такое Spider Free - The simplest web scraper?

Spider Free - The simplest web scraper - это расширение Chrome, разработанное https://amie-chen.com, и его основная функция - "Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Spider Free - The simplest web scraper

Скачайте файлы расширений Spider Free - The simplest web scraper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Spider is a smart point-and-click web scraping tool. With Spider, you can turn websites into organized data, download it as JSON or spreadsheet. There's no coding experience or configuration time involved, simply open the chrome extension and start clicking.                    

Основная информация о расширении

Название Spider Free - The simplest web scraper Spider Free - The simplest web scraper
ID hhblpocflefpmmfibmajdfcjdkeafpen
Официальный URL https://chromewebstore.google.com/detail/spider-free-the-simplest/hhblpocflefpmmfibmajdfcjdkeafpen
Описание Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.
Размер файла 17.4 KB
Количество установок 8,749
Текущая Версия 2.0
Последнее Обновление 2022-07-26
Дата публикации 2019-04-26
Рейтинг 4.00/5 Всего 26 оценок
Разработчик https://amie-chen.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://amie-chen.com
URL страницы помощи https://amie-chen.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spider Free - The simplest web scraper",
    "short_name": "Spider",
    "version": "2.0",
    "author": "Amie Chen",
    "description": "Spider let's you turn websites into organized data, download them as JSON\/CSV. No coding or configuration required.",
    "manifest_version": 3,
    "commands": {
        "toggle-spider": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Q",
                "windows": "Alt+Q",
                "chromeos": "Alt+Q",
                "linux": "Alt+Q"
            },
            "description": "Toggle Spider"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "content\/content.html",
                "content\/content.css",
                "content-min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "downloads",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "32": "images\/logo-32.png"
        }
    }
}