Browserhub – Automated Visual Web Scraping

The visual web scraping builder of browserhub.io

Wat is Browserhub – Automated Visual Web Scraping?

Browserhub – Automated Visual Web Scraping is een Chrome-extensie ontwikkeld door https://browserhub.io, en de belangrijkste functie is "The visual web scraping builder of browserhub.io".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Browserhub – Automated Visual Web Scraping

Download Browserhub – Automated Visual Web Scraping-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension will help you build a web scraper visually.

Some of the steps that you can do:
• Get a list of data from a web page
• Get some texts from a web page
• Get some links from a web page
• Setup pagination with a button click or continuous scroll
• Click an element from a web page
• Select a dropdown value from a web page
• Write some input to a particular field from a web page
• Solve CAPTCHAs
• And many more                    

Basisinformatie over de Extensie

Naam Browserhub – Automated Visual Web Scraping Browserhub – Automated Visual Web Scraping
ID pjghcpedbaikfbofdlpnacpdhcblflda
Officiële URL https://chromewebstore.google.com/detail/browserhub-%E2%80%93-automated-vi/pjghcpedbaikfbofdlpnacpdhcblflda
Beschrijving The visual web scraping builder of browserhub.io
Bestandsgrootte 115 KB
Aantal Installaties 44
Huidige Versie 1.4.1
Laatst Bijgewerkt 2023-10-30
Publicatiedatum 2023-07-11
Ontwikkelaar https://browserhub.io
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.browserhub.io
URL van de Privacybeleid Pagina https://www.browserhub.io/privacy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Browserhub \u2013 Automated Visual Web Scraping",
    "description": "The visual web scraping builder of browserhub.io",
    "version": "1.4.1",
    "icons": {
        "16": "logo16.png",
        "32": "logo32.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "logo16.png",
            "32": "logo32.png",
            "48": "logo48.png",
            "128": "logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "color_scheme_checker.js",
                "container.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "tabs",
        "webNavigation",
        "cookies"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "style.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/app.browserhub.io\/*"
        ]
    }
}