Chrome Web Scraper

Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.

ما هو Chrome Web Scraper؟

Chrome Web Scraper هو إضافة Chrome تم تطويرها بواسطة dylanrstevens، والميزة الرئيسية لها هي "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Chrome Web Scraper

قم بتنزيل ملفات الامتداد Chrome Web Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Quickly gather the raw text from a website, and have it automatically parsed and saved to a text file for you. Perfect for developers, or those looking to gather large amounts of real text data efficiently.                    

معلومات أساسية عن التمديد

الاسم Chrome Web Scraper Chrome Web Scraper
ID obhkinejeakgfelofmgbjdenckknmeoc
عنوان URL الرسمي https://chromewebstore.google.com/detail/chrome-web-scraper/obhkinejeakgfelofmgbjdenckknmeoc
الوصف Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.
حجم الملف 198 KB
عدد التثبيتات 56
النسخة الحالية 1.0
آخر تحديث 2022-08-07
تاريخ النشر 2022-08-07
المطور dylanrstevens
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dylanrstevens/chrome-web-scraper
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome Web Scraper",
    "version": "1.0",
    "description": "Chrome extension to automatically scrape text from websites. All data is automatically saved to a text file.",
    "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": "Chrome Web Scraper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads"
    ]
}