Web Scraper

Use this extension to scrape web data.

Web Scraperคืออะไร?

Web Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Multivariate AI Solution และคุณลักษณะหลักของมันคือ "Use this extension to scrape web data."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Scraper

ดาวน์โหลดไฟล์ส่วนขยาย Web Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Use Web Scraper to scrape data from list of websites.
Instructions:
List out all the urls you want to scrape from, along with the Full Xpaths.
Load data into extension, and then hit start scrape button to start scraping the websites.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Scraper Web Scraper
ID dogiinkejekngjnphjklkdohanocpnfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-scraper/dogiinkejekngjnphjklkdohanocpnfj
คำอธิบาย Use this extension to scrape web data.
ขนาดไฟล์ 50.73 KB
จำนวนการติดตั้ง 131
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2022-06-01
วันที่เผยแพร่ 2022-02-24
ผู้พัฒนา Multivariate AI Solution
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://multivariate.tech/privacy-policy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web Scraper",
    "version": "0.2.0",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkvgY56Z2PfO9WXkVKnBrJGKarliZMijorSht14CGFAmSgubbI9V95o2zzBU0dlmc1qThF\/QbOEXv+GDWG2lFVjfixuRanZf0o4Aw1r9b8HW4I6QmxCkNTWl0jhISVaYhjebFbD65kHmHgthknDv+CLSYx2VwUakLXRGlv7L4u1KDgKYKVOZ1BNpC2rTtyRDrAugDBpXZlQK9fb38NKhsBF\/\/EDdhLoHkoC8W25yW8jBbsV5jrrMZsU\/3nkFH\/b\/MNDZk+DZdTYvXj57tZSpx\/IfL0WETnluJo0wOheZq2Nyq+hmlQPFVRhZgBQ0tqGTIdNVaCyVHSfNDEOFSoH4ZJQIDAQAB",
    "oauth2": {
        "client_id": "1001321090350-rqnvvl34rq38smemrsdchg2udknr89hu.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/spreadsheets"
        ]
    },
    "description": "Use this extension to scrape web data.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Webscrper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/sheets.googleapis.com\/v4\/spreadsheets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}