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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}