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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}