GrabzIt Web Scraping Assistant

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

什麼是GrabzIt Web Scraping Assistant?

GrabzIt Web Scraping Assistant是由https://grabz.it開發的Chrome擴展程式,該擴展的主要功能是“Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.”。

擴展截圖

screenshot

下載GrabzIt Web Scraping Assistant擴展crx文件

下載GrabzIt Web Scraping Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 GrabzIt Web Scraping Assistant GrabzIt Web Scraping Assistant
ID kjcjpodjlhbebaeaipbbipmfnffaobhf
官方網址 https://chromewebstore.google.com/detail/grabzit-web-scraping-assi/kjcjpodjlhbebaeaipbbipmfnffaobhf
簡介 Create Web Scrapes online easier than ever before with GrabzIt's Web Scraping Assistant.
檔案大小 39.32 KB
安裝次數 986
目前版本 1.2.2
更新時間 2024-02-25
上架時間 2020-01-11
評分 3.00/5 共 2 次評分
開發者 https://grabz.it
電子郵箱 [email protected]
付費類型 free
擴展官網 https://grabz.it/scraper/assistant/
說明頁面URL https://grabz.it/support/
隱私政策頁面URL https://grabz.it/legal/privacy-policy
支援的語言 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"
    }
}