DataGrab

Extract web data at scale without coding.

Τι είναι το DataGrab;

Το DataGrab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://datagrab.io, και η κύρια λειτουργία του είναι "Extract web data at scale without coding.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DataGrab

Λήψη αρχείων επέκτασης DataGrab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        DataGrab allows you to extract data from web pages via a point-and-click interface, supporting a variety of use cases such as lead generation, price monitoring, data aggregation, real estate listings, and more. It is primarily designed for non-coders, but it still offers the flexibility for developers to tweak the generated CSS selectors.

You can set up your scrapers using this extension, then in our cloud platform at scale.

Our cloud service offers monthly subscriptions for users with recurring data needs as well as the option to purchase credits in bulks (for occasional data needs). Bulk credits never expire.

Features
 * Visual scraper setup
 * Pagination (next link, infinite scroll, or "load more" button)
 * Javascript rendering
 * Proxy rotation
 * Google Sheets integration
 * Concurrent requests
 * Exporting data in CSV or JSON format
 * Data retention for 7 days                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DataGrab DataGrab
ID kfonioidcoibmccipgaihpkjiakcadkh
Επίσημο URL https://chromewebstore.google.com/detail/datagrab/kfonioidcoibmccipgaihpkjiakcadkh
Περιγραφή Extract web data at scale without coding.
Μέγεθος Αρχείου 725 KB
Αριθμός Εγκαταστάσεων 1,409
Τρέχουσα Έκδοση 4.7.1
Τελευταία Ενημέρωση 2023-12-08
Ημερομηνία Δημοσίευσης 2020-12-26
Αξιολόγηση 4.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://datagrab.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://datagrab.io
Διεύθυνση URL της Σελίδας Βοήθειας https://datagrab.io/contact
URL της Σελίδας Πολιτικής Απορρήτου https://datagrab.io/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DataGrab",
    "version": "4.7.1",
    "manifest_version": 3,
    "description": "Extract web data at scale without coding.",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "DataGrab",
        "default_icon": {
            "16": "icons\/datagrab_16.png",
            "32": "icons\/datagrab_32.png",
            "48": "icons\/datagrab_48.png",
            "128": "icons\/datagrab_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app-host.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "http:\/\/localhost:8080\/*",
            "https:\/\/*.datagrab.io\/*"
        ]
    },
    "icons": {
        "16": "icons\/datagrab_16.png",
        "32": "icons\/datagrab_32.png",
        "48": "icons\/datagrab_48.png",
        "128": "icons\/datagrab_128.png"
    },
    "minimum_chrome_version": "88",
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/css\/*",
                "app-panel.*",
                "browser-run.*",
                "navigation-test.*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}