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