GrabzIt Web Scraping Assistant

Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.

GrabzIt Web Scraping Assistant là gì?

GrabzIt Web Scraping Assistant là một tiện ích mở rộng Chrome được phát triển bởi https://grabz.it, và tính năng chính của nó là "Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GrabzIt Web Scraping Assistant

Tải xuống các tệp mở rộng GrabzIt Web Scraping Assistant 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

                        GrabzIt's Web Scraper allows you to scrape websites using just your browser without having to download any extra technology and while this works for 95% of website unfortunately some websites make this difficult by using certain security settings such as content-security-policy headers to block access. Where there are still issues it re-writes some URL's to ensure the website is represented reliably in the web scraper wizard.

To overcome these issues and make your web scraping easier, you can use this extension to disable this some security features for requests originating from our Web Scraper Wizard.

Additionally, the Web Scraping Assistant comes with some handy shortcuts to allow you to scrape or convert a website quicker than ever before!                    

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

Tên GrabzIt Web Scraping Assistant GrabzIt Web Scraping Assistant
ID kjcjpodjlhbebaeaipbbipmfnffaobhf
URL Chính Thức https://chromewebstore.google.com/detail/grabzit-web-scraping-assi/kjcjpodjlhbebaeaipbbipmfnffaobhf
Mô tả Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.
Kích Thước Tệp 39.32 KB
Số Lần Cài Đặt 986
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2024-02-25
Ngày Phát Hành 2020-01-11
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://grabz.it
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://grabz.it/scraper/assistant/
URL Trang Trợ Giúp https://grabz.it/support/
URL Trang Chính Sách Bảo Mật https://grabz.it/legal/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GrabzIt Web Scraping Assistant",
    "description": "Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.",
    "version": "1.2.2",
    "author": "GrabzIt",
    "homepage_url": "https:\/\/grabz.it\/scraper\/",
    "manifest_version": 3,
    "externally_connectable": {
        "matches": [
            "*:\/\/grabz.it\/scraper\/scrape*"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "declarativeNetRequest",
        "notifications",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/grabz.it\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/grabz.it\/scraper\/scrape*"
            ],
            "js": [
                "active.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "icon48.png",
        "64": "icon64.png",
        "96": "icon.png",
        "128": "icon128.png"
    }
}