Browserhub – Automated Visual Web Scraping

The visual web scraping builder of browserhub.io

What is Browserhub – Automated Visual Web Scraping?

Browserhub – Automated Visual Web Scraping is a Chrome extension developed by https://browserhub.io, and its main feature is "The visual web scraping builder of browserhub.io".

Extension Screenshots

screenshot
screenshot
screenshot

Download Browserhub – Automated Visual Web Scraping Extension CRX File

Download Browserhub – Automated Visual Web Scraping extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Browserhub – Automated Visual Web Scraping Browserhub – Automated Visual Web Scraping
ID pjghcpedbaikfbofdlpnacpdhcblflda
Official URL https://chromewebstore.google.com/detail/browserhub-%E2%80%93-automated-vi/pjghcpedbaikfbofdlpnacpdhcblflda
Description The visual web scraping builder of browserhub.io
File Size 115 KB
Installation Count 44
Current Version 1.4.1
Last Updated 2023-10-30
Publish Date 2023-07-11
Developer https://browserhub.io
Email [email protected]
Payment Type free
Extension Website https://www.browserhub.io
Privacy Policy Page URL https://www.browserhub.io/privacy
Supported Languages 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\/*"
        ]
    }
}