Jawa - Visual Scraper

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

Cos'è Jawa - Visual Scraper?

Jawa - Visual Scraper è un'estensione di Chrome sviluppata da https://jawa.sh, e la sua funzione principale è "Visual scraper interface, exports to puppeteer script which you can run anywhere.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Jawa - Visual Scraper

Scarica i file di estensione Jawa - Visual Scraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Jawa - Visual Scraper Jawa - Visual Scraper
ID icjgianfpiifbdpddkadmpcegiffiglk
URL Ufficiale https://chromewebstore.google.com/detail/jawa-visual-scraper/icjgianfpiifbdpddkadmpcegiffiglk
Descrizione Visual scraper interface, exports to puppeteer script which you can run anywhere.
Dimensione del File 28.93 KB
Conteggio Installazioni 155
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-10-15
Data di Pubblicazione 2022-10-17
Sviluppatore https://jawa.sh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://jawa.sh
URL della Pagina di Aiuto https://github.com/capjavert/vscraper/issues
Lingue Supportate 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"
    }
}