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.

Co to jest Spider Free - The simplest web scraper?

Spider Free - The simplest web scraper to rozszerzenie Chrome opracowane przez https://amie-chen.com, a jego główną funkcją jest „Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Spider Free - The simplest web scraper

Pobierz pliki rozszerzeń Spider Free - The simplest web scraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Spider Free - The simplest web scraper Spider Free - The simplest web scraper
ID hhblpocflefpmmfibmajdfcjdkeafpen
Oficjalny URL https://chromewebstore.google.com/detail/spider-free-the-simplest/hhblpocflefpmmfibmajdfcjdkeafpen
Opis Spider let's you turn websites into organized data, download them as JSON/CSV. No coding or configuration required.
Rozmiar pliku 17.4 KB
Liczba instalacji 8,749
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2022-07-26
Data Publikacji 2019-04-26
Ocena 4.00/5 Łącznie 26 Oceny
Deweloper https://amie-chen.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://amie-chen.com
Adres URL Strony Pomocy https://amie-chen.com
Obsługiwane Języki 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"
        }
    }
}