Browserhub – Automated Visual Web Scraping

The visual web scraping builder of browserhub.io

Browserhub – Automated Visual Web Scraping là gì?

Browserhub – Automated Visual Web Scraping là một tiện ích mở rộng Chrome được phát triển bởi https://browserhub.io, và tính năng chính của nó là "The visual web scraping builder of browserhub.io".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Browserhub – Automated Visual Web Scraping

Tải xuống các tệp mở rộng Browserhub – Automated Visual Web Scraping dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Browserhub – Automated Visual Web Scraping Browserhub – Automated Visual Web Scraping
ID pjghcpedbaikfbofdlpnacpdhcblflda
URL Chính Thức https://chromewebstore.google.com/detail/browserhub-%E2%80%93-automated-vi/pjghcpedbaikfbofdlpnacpdhcblflda
Mô tả The visual web scraping builder of browserhub.io
Kích Thước Tệp 115 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2023-10-30
Ngày Phát Hành 2023-07-11
Nhà Phát Triển https://browserhub.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.browserhub.io
URL Trang Chính Sách Bảo Mật https://www.browserhub.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}