Browserhub – Automated Visual Web Scraping

The visual web scraping builder of browserhub.io

Vad är Browserhub – Automated Visual Web Scraping?

Browserhub – Automated Visual Web Scraping är en Chrome-tillägg utvecklad av https://browserhub.io, och dess huvudfunktion är "The visual web scraping builder of browserhub.io".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Browserhub – Automated Visual Web Scraping-förlängningens CRX-fil

Ladda ner Browserhub – Automated Visual Web Scraping-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Browserhub – Automated Visual Web Scraping Browserhub – Automated Visual Web Scraping
ID pjghcpedbaikfbofdlpnacpdhcblflda
Officiell webbadress https://chromewebstore.google.com/detail/browserhub-%E2%80%93-automated-vi/pjghcpedbaikfbofdlpnacpdhcblflda
Beskrivning The visual web scraping builder of browserhub.io
Filstorlek 115 KB
Antal Installationer 44
Aktuell Version 1.4.1
Senast Uppdaterad 2023-10-30
Publiceringsdatum 2023-07-11
Utvecklare https://browserhub.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.browserhub.io
URL till Sekretesspolicy Sidan https://www.browserhub.io/privacy
Stödda Språk 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\/*"
        ]
    }
}