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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}